Ò׽ؽØÍ¼Èí¼þ¡¢µ¥Îļþ¡¢Ãâ°²×°¡¢´¿ÂÌÉ«¡¢½ö160KB

Ò»¸ö±È½ÏÍêÉÆµÄPHP¹ºÎï³µÀà

<?
/*****************************************************************************/
/* */
/* file type: °üº¬Îļþ£¬½¨Òéºó׺Ϊ.inc */
/* */
/* file name: cart.inc */
/* */
/* Description: ¶¨ÒåÒ»¸ö¹º³µÀà */
/* */
/* Func list : class cart */
/* */
/* author : bigeagle */
/* */
/* date : 2000/12/24 */
/* */
/* History: 2000/12/24 finished */
/* */
/*****************************************************************************/
//¶¨Òå±¾Îļþ³£Á¿
define("_CART_INC_" , "exists") ;
/*¹ºÎï³µÀà*/
class TCart
{
var $SortCount; //ÉÌÆ·ÖÖÀàÊý
var $TotalCost; //ÉÌÆ·×ܼÛÖµ
var $Id; //ÿÀàÉÌÆ·µÄID£¨Êý×飩
var $Name; //ÿÀàÉÌÆ·µÄÃû³Æ£¨Êý×飩
var $Price; //ÿÀàÉÌÆ·µÄ¼Û¸ñ£¨Êý×飩
var $Discount; //ÉÌÆ·µÄÕÛ¿Û£¨Êý×飩
var $GoodPrice ; //ÉÌÆ·µÄÓŻݼ۸ñ£¨Êý×飩
var $Count; //ÿÀàÉÌÆ·µÄ¼þÊý£¨Êý×飩
var $MaxCount ; //ÉÌÆ·ÏÞÁ¿£¨Êý×飩
//******¹¹Ô캯Êý
function TCart()
{
$this->SortCount=0;
session_start(); //³õʼ»¯Ò»¸ösession
session_register('sId');
session_register('sName');
session_register('sPrice');
session_register('sDiscount');
session_register('sGoodPrice') ;
session_register('sCount') ;
session_register('sMaxCount') ;
$this->Update();
$this->Calculate();
}
//********˽ÓУ¬¸ù¾ÝsessionµÄÖµ¸üÐÂÀàÖÐÏàÓ¦Êý¾Ý
function Update()
{
global $sId,$sName,$sPrice,$sCount,$sDiscount,$sMaxCount,$sGoodPrice;
if(!isset($sId) or !isset($sName) or !isset($sPrice)
or !isset($sDiscount) or !isset($sMaxCount)
or !isset($sGoodPrice) or !isset($sCount)) return;
$this->Id =$sId;
$this->Name =$sName;
$this->Price =$sPrice;
$this->Count =$sCount;
$this->Discount = $sDiscount ;
$this->GoodPrice = $sGoodPrice ;
$this->MaxCount = $sMaxCount ;
//¼ÆËãÉÌÆ·×ÜÊý
$this->SortCount=count($sId);
}
//********˽ÓУ¬¸ù¾ÝеÄÊý¾Ý¼ÆËãÿÀàÉÌÆ·µÄ¼ÛÖµ¼°È«²¿ÉÌÆ·µÄ×ܼÛ
function Calculate()
{
for($i=0;$i<$this->SortCount;$i++)
{
/*¼ÆËãÿ¼þÉÌÆ·µÄ¼ÛÖµ£¬Èç¹ûÕÛ¿ÛÊÇ


Ïà¹ØÎĵµ£º

PHPÈçºÎ¶ÔSESSIONÐòÁл¯£¨SESSION¶ÔÏó´¦Àí£©

這個問題ÓÐ點Ææ¹Ö£¬ÔÚJavaºÍ.netµÄÊÀ½ç裡還δÅöµ½過.......
¿´來PHP對對ÏóµÄÖ§³Ö還²»ÊÇÌ«ÓѺ㬺ǺÇ~~~
[轉載ì¶£º] http://blog.csdn.net/yehell/archive/2007/12/19/1953826.aspx
½ñÌìÔÚphpÎļþÖÐÉèÖÃÁËÒ»¸ösession.²¢½«Ò»¸öÀ ......

apache and php common tips and problems

When I deploy php application on apache, some problem come out, and solved. Here's the tips and problems solved.
0.How could I deploy an apache server armed with php, mysql, perl, and phpMyAdmin on the fly?
You need a package bundled with all these tools,  xampp shall meet you needs, you can ......

java php DES ¼ÓÃܽâÃÜ

import java.io.IOException;
import java.security.SecureRandom;
import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DESKeySpec;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;
public class DES {
private byte ......

php smarty»ù±¾Ê¹ÓÃ

1.»ù±¾Àà
//smarty_config.php
<?php
define('TEMPLATE_DIR','templates/');
define('COMPILE_DIR','templates_c/');
define('CONFIG_DIR','configs/');
define('CACHE_DIR','cache/');
?>
//View.class.php
<?php
//ÅäÖÃÎļþ
require_once 'configs/smart_config.php';
//SmartyÀà
require('smarty/ ......
© 2009 ej38.com All Rights Reserved. ¹ØÓÚE½¡ÍøÁªÏµÎÒÃÇ | Õ¾µãµØÍ¼ | ¸ÓICP±¸09004571ºÅ