当前位置:首页 > PHP教程 > php应用 > 列表

php中cookie+mysql实现的购物车代码

发布:smiling 来源: PHP粉丝网  添加日期:2015-04-09 11:38:44 浏览: 评论:0 

在网上找了一些php购物车例子,都是把数据保存在cookie或者session中了,这种问题其实是不成熟的如果用户关闭浏览器或清除缓存就没有了,但使用过淘宝的朋友都知道数据下次还会有,下面我们这个例子就是结合mysql数据库实现的购物车程序.

电商网站开发过程中购物车实现是必要的功能,本文为大家介绍php 购物车代码的实现.

原理:cookie存购物车ID,数据库存购物车数据,代码如下:

  1. <?php 
  2. //购物车session的产生代码 
  3. if(! $session && ! $scid) { 
  4.  /* 
  5.  session用来区别每一个购物车,相当于每个车的身份证号; 
  6.  scid只用来标识一个购物车id号,可以看做是每个车的名字; 
  7.  当该购物车的id和session值两者都不存在时,就产生一个新购物车 
  8.  */ 
  9.  $session = md5(uniqid(rand())); 
  10.  /* 
  11.  产生一个唯一的购物车session号 
  12.  rand()先产生个随机数,uniqid()再在该随机数的基础上产生一个独一无二的字符串,最后对该字符串进行md5 
  13.  */ 
  14.  SetCookie(scid, $session, time() + 14400); 
  15.  /* 
  16.  设置该购物车cookie 
  17.  变量名:scid(不知到这里是不是少了一个 $号呢?=》更正:scid要加“”) 
  18.  变量值: $session 
  19.  有效时间:当前时间+14400秒(4小时内) 
  20.  关于setcookie函数的详细用法,大家还是参看php手册吧~ 
  21.  */ 
  22. //---------------------------------------------------- 
  23. //开始购物车类 
  24. class Cart { //开始购物车类 
  25.  function check_item( $table$session$product) { 
  26.   /* 
  27.   查验物品(表名,session,物品) 
  28.   */ 
  29.   $query = "SELECT * FROM $table WHERE session=' $session' AND product=' $product'" ; 
  30.   /* 
  31.   看一看'表'里该'购物车'中有没有该'产品' 
  32.   即,该产品有没有已经放入购物车 
  33.   */ 
  34.   $result = mysql_query( $query); 
  35.   if(! $result) { 
  36.    return 0; 
  37.   } 
  38.   /* 
  39.   查询失败 
  40.   */ 
  41.   $numRows = mysql_num_rows( $result); 
  42.   if$numRows == 0) { 
  43.    return 0; 
  44.    /* 
  45.    若没有找到,则返回0 
  46.    */ 
  47.   } else { 
  48.    $row = mysql_fetch_object( $result); 
  49.    return $row->quantity; 
  50.    /* 
  51.    若找到,则返回该物品数量 
  52.    这里有必要解释一下mysql_fetch_object函数(下面还会用到): 
  53.    【mysql_fetch_object() 和 mysql_fetch_array() 类似,只有一点区别 - 返回一个对象而不是数组。】 
  54.    上面这句话摘自php手册,说得应该很明白了吧~ 
  55.    简单的说就是,取一条记录中的某个字段,应该用“->”而不是像数组一样用下标 
  56.    */ 
  57.   } 
  58.  } 
  59.  function add_item( $table$session$product$quantity) { 
  60.   /* 
  61.   添加新物品(表名,session,物品,数量) 
  62.   */ 
  63.   $qty = $this->check_item( $table$session$product); 
  64.   /* 
  65.   调用上面那个函数,先检查该类物品有没有已经放入车中 
  66.   */ 
  67.   if$qty == 0) { 
  68.    $query = "INSERT INTO $table (session, product, quantity) VALUES" ; 
  69.    $query .= "(' $session', ' $product', ' $quantity') "
  70.    mysql_query( $query); 
  71.    /*若车中没有,则像车中添加该物品*/ 
  72.   } else { 
  73.    $quantity += $qty//若有,则在原有基础上增加数量 
  74.    $query = "UPDATE $table SET quantity=' $quantity' WHERE session=' $session' AND" ; 
  75.    $query .= "product=' $product'" ; 
  76.    mysql_query( $query); 
  77.    /* 
  78.    并修改数据库 
  79.    */ 
  80.   } 
  81.  } 
  82.  function delete_item( $table$session$product) { 
  83.   /* 
  84.   删除物品(表名,session,物品) 
  85.   */ 
  86.   $query = "DELETE FROM $table WHERE session=' $session' AND product=' $product'" ; 
  87.   mysql_query( $query); 
  88.   /* 
  89.   删除该购物车中该类物品 
  90.   */ 
  91.   } 
  92.   function modify_quantity( $table$session$product$quantity) { 
  93.   /* 
  94.   修改物品数量(表名,session,物品,数量) 
  95.   */ 
  96.   $query = "UPDATE $table SET quantity=' $quantity' WHERE session=' $session'" ; 
  97.   $query .= "AND product=' $product'" ; 
  98.   mysql_query( $query); 
  99.   /* 
  100.   将该物品数量修改为参数中的值 
  101.   */ 
  102.  } 
  103.  function clear_cart( $table$session) { 
  104.   /* 
  105.   清空购物车(没什么好说) 
  106.   */ 
  107.   $query = "DELETE FROM $table WHERE session=' $session'" ; 
  108.   mysql_query( $query); 
  109.  } 
  110.  function cart_total( $table$session) { 
  111.   /* 
  112.   车中物品总价 
  113.   */ 
  114.   $query = "SELECT * FROM $table WHERE session=' $session'" ; 
  115.   $result = mysql_query( $query); 
  116.   /* 
  117.   先把车中所有物品取出 
  118.   */ 
  119.   if(mysql_num_rows( $result) > 0) { 
  120.    while$row = mysql_fetch_object( $result)) { 
  121.     /* 
  122.     如果物品数量>0个,则逐个判断价格并计算 
  123.     */ 
  124.     $query = "SELECT price FROM inventory WHERE product=' $row->product'" ; 
  125.     $invResult = mysql_query( $query); 
  126.     /* 
  127.     从inventory(库存)表中查找该物品的价格 
  128.     */ 
  129.     $row_price = mysql_fetch_object( $invResult); 
  130.     $total += ( $row_price->price * $row->quantity); 
  131.     /* 
  132.     总价 += 该物品价格 * 该物品数量 
  133.     ( 大家应该能看明白吧:) ) 
  134.     */ 
  135.     } 
  136.    } 
  137.    return $total//返回总价钱 
  138.   }  //开源软件:phpfensi.com 
  139.   function display_contents( $table$session) { 
  140.   /* 
  141.   获取关于车中所有物品的详细信息 
  142.   */ 
  143.   $count = 0; 
  144.   /* 
  145.   物品数量计数 
  146.   注意,该变量不仅仅为了对物品数量进行统计,更重要的是,它将作为返回值数组中的下标,用来区别每一个物品! 
  147.   */ 
  148.   $query = "SELECT * FROM $table WHERE session=' $session' ORDER BY id" ; 
  149.   $result = mysql_query( $query); 
  150.   /* 
  151.   先取出车中所有物品 
  152.   */ 
  153.   while$row = mysql_fetch_object( $result)) { 
  154.   /* 
  155.   分别对每一个物品进行取详细信息 
  156.   */ 
  157.   $query = "SELECT * FROM inventory WHERE product=' $row->product'" ; 
  158.   $result_inv = mysql_query( $query); 
  159.   /* 
  160.   从inventory(库存)表中查找该物品的相关信息 
  161.   */ 
  162.   $row_inventory = mysql_fetch_object( $result_inv); 
  163.   $contents[product][ $count] = $row_inventory->product; 
  164.   $contents[price][ $count] = $row_inventory->price; 
  165.   $contents[quantity][ $count] = $row->quantity; 
  166.   $contents[total][ $count] = ( $row_inventory->price * $row->quantity); 
  167.   $contents[description][ $count] = $row_inventory->description; 
  168.   /* 
  169.   把所有关于该物品的详细信息放入 $contents数组 
  170.   $contents是一个二维数组 
  171.   第一组下标是区别每个物品各个不同的信息(如物品名,价钱,数量等等) 
  172.   第二组下标是区别不同的物品(这就是前面定义的 $count变量的作用) 
  173.   */ 
  174.   $count++; //物品数量加一(即下一个物品) 
  175.   } 
  176.   $total = $this->cart_total( $table$session); 
  177.   $contents[final] = $total
  178.   /* 
  179.   同时调用上面那个cart_total函数,计算下总价钱 
  180.   并放入 $contents数组中 
  181.   */ 
  182.   return $contents
  183.   /* 
  184.   将该数组返回 
  185.   */ 
  186.  } 
  187.  function num_items( $table$session) { 
  188.   /* 
  189.   返回物品种类总数(也就是说,两个相同的东西算一种 好像是废话- -!) 
  190.   */ 
  191.   $query = "SELECT * FROM $table WHERE session=' $session'" ; 
  192.   $result = mysql_query( $query); 
  193.   $num_rows = mysql_num_rows( $result); 
  194.   return $num_rows
  195.   /* 
  196.   取出车中所有物品,获取该操作影响的数据库行数,即物品总数(没什么好说的) 
  197.   */ 
  198.  } 
  199.  function quant_items( $table$session) { 
  200.   /* 
  201.   返回所有物品总数(也就是说,两个相同的东西也算两个物品 - -#) 
  202.   */ 
  203.   $quant = 0;// 物品总量 
  204.   $query = "SELECT * FROM $table WHERE session=' $session' "
  205.   $result = mysql_query( $query); 
  206.   while$row = mysql_fetch_object( $result)) { 
  207.    /* 
  208.    把每种物品逐个取出 
  209.    */ 
  210.    $quant += $row->quantity; //该物品数量加到总量里去 
  211.   } 
  212.   return $quant//返回总量 
  213.  } 
  214. ?>

Tags: cookie+mysql php购物车

分享到: