PHP基于角色+操作+频道的权限系统设计
2010年06月20日
2010年05月29日
php购物车实现方法,实现思路
前言:对于PHP实现购物车的方法有很多,购物车的操作莫过于添加商品,修改商品数量,删除商品,清空购物车,而操作的对象则为一个商品记录。 实现方式:大致有3种。 第一种:$_COOKIE 实现思路:把一个二维数组存入cookie。其中一维代表一个商品记录,二维代表商品属性。其模型为: $_COOKIE[‘cart’] = array( ‘0’=>array(id,name,price,discount,count,maxcount), ‘1’=>array(id,name,price,discount,count,maxcount) ) [...]
阅读 (13,271 views)
Comments (0)