课课家小编最近涉及到一个项目相关的商品店,给正在PHP学习的教程概述。的这个很明显,购物车必须有,我记得很久以前用PHP的购物车做了,但没有保存,之前不能犯这样的错误,通过各种研究,我也总结出一个购物车PHP实现类。加入实现商品的购物车,修改,删除,列表和各种计算的相关功能。使用单一类型的PHP,安全,高效,简便,易扩展的原则。
006 |
static protected $ins ; //实例变量 |
007 |
public $item = array (); //放商品容器 |
009 |
final protected function __construct(){} |
011 |
final protected function __clone(){} |
013 |
static protected function getIns(){ |
014 |
if (!(self:: $ins instanceof self)){self:: $ins = new self();} return self:: $ins ; |
016 |
//为了能使商品跨页面保存,把对象放入session里,这里为了防止冲突,设置了一个session后缀参数 |
017 |
public static function getCat( $sesSuffix = 'phpernote' ){ |
018 |
if (!isset( $_SESSION [ 'cat' . $sesSuffix ])||!( $_SESSION [ 'cat' . $sesSuffix ] instanceof self)){ |
019 |
$_SESSION [ 'cat' . $sesSuffix ]=self::getIns(); |
021 |
return $_SESSION [ 'cat' . $sesSuffix ]; |
024 |
public function inItem( $goods_id ){ |
025 |
if ( $this ->getTypes()==0){ |
028 |
//这里检验商品是否相同是通过goods_id来检测,并未通过商品名称name来检测,具体情况可做修改 |
029 |
if (!( array_key_exists ( $goods_id , $this ->item))){ |
032 |
return $this ->item[ $goods_id ][ 'num' ]; //返回此商品个数 |
042 |
public function addItem( $goods_id , $name , $num , $price ){ |
043 |
if ( $this ->inItem( $goods_id )!=false){ |
044 |
$this ->item[ $goods_id ][ 'num' ]+= $num ; |
047 |
$this ->item[ $goods_id ]= array (); //一个商品为一个数组 |
048 |
$this ->item[ $goods_id ][ 'num' ]= $num ; //这一个商品的购买数量 |
049 |
$this ->item[ $goods_id ][ 'name' ]= $name ; //商品名字 |
050 |
$this ->item[ $goods_id ][ 'price' ]= floatval ( $price ); //商品单价 |
053 |
public function reduceItem( $goods_id , $num ){ |
054 |
if ( $this ->inItem( $goods_id )==false){ |
057 |
if ( $num > $this ->getNum( $goods_id )){ |
058 |
unset( $this ->item[ $goods_id ]); |
060 |
$this ->item[ $goods_id ][ 'num' ]-= $num ; |
064 |
public function delItem( $goods_id ){ |
065 |
if ( $this ->inItem( $goods_id )){ |
066 |
unset( $this ->item[ $goods_id ]); |
070 |
public function itemList(){ |
074 |
public function getTypes(){ |
075 |
return count ( $this ->item); |
078 |
public function getNum( $goods_id ){ |
079 |
return $this ->item[ $goods_id ][ 'num' ]; |
082 |
public function getNumber(){ |
084 |
if ( $this ->getTypes()==0){ |
087 |
foreach ( $this ->item as $k => $v ){ |
093 |
public function getPrice(){ |
095 |
if ( $this ->getTypes()==0){ |
098 |
foreach ( $this ->item as $k => $v ){ |
099 |
$price += floatval ( $v [ 'num' ]* $v [ 'price' ]); |
104 |
public function emptyItem(){ |
以上购物车类的调用示例如下:
02 |
header( "Content-type:text/html;charset=utf-8" ); |
04 |
$cart = Cart::getCat( '_test' ); |
05 |
//cart经过一次实例化之后,任意页面都可以通过$_SESSION['cat_test']调用cart类的相关方法 |
06 |
$_SESSION [ 'cat_test' ]->addItem( '1' , '苹果' , '1' , '8.03' ); |
07 |
$cart ->addItem( '2' , '香蕉' , '3' , '6.5' ); |
10 |
echo '获取购物车商品名称:' . $_SESSION [ 'cat_test' ]->item[1][ 'name' ], ';' , $_SESSION [ 'cat_test' ]->item[2][ 'name' ]; |
12 |
echo '购物车中共有商品总数:' , $cart ->getNumber(); |
14 |
echo '购物车中商品总价:' , $_SESSION [ 'cat_test' ]->getPrice(); |
16 |
//$_SESSION['cat_test']->emptyItem(); |
最后php学习掌握以上方法完全可以实现商品的购物车啦!猜您喜欢
PHP视频教程的课程:|
站长聚集地php教程 |