浅析购物php车实现代码
来源:爱站网时间:2019-02-22编辑:网友分享
在PHP中编写购物车的代码的时候,我们首先设想一下需要从数据库中拉出一个表单,这里我使用水果表,然后是登录表,用它来调用用户名和密码,下面就让爱站技术频道小编浅析php购物车实现代码!
在 PHP中编写购物车的代码的时候,我们首先设想一下需要从数据库中拉出一个表单,这里我使用水果表,然后是登录表,用它来调用用户名和密码,下面就让爱站技术频道小编浅析php购物车实现代码!
复制代码 代码如下:
class Shopcar
{
//商品列表
public $productList=array();
/**
*
* @param unknown_type $product 传进来的商品
* @return true 购物车里面没有该商品
*/
public function checkProduct($product)
{
for($i=0;$i
{
if($this->productList[$i]['name']==$product['name'])
return $i;
}
return -1;
}
//添加到购物车
public function add($product)
{
$i=$this->checkProduct($product);
if($i==-1)
array_push($this->productList,$product);
else
$this->productList[$i]['num']+=$product['num'];
}
//删除
public function delete($product)
{
$i=$this->checkProduct($product);
if($i!=-1)
array_splice($this->productList,$i,1);
}
//返回所有的商品的信息
public function show()
{
return $this->productList;
}
}
productList.html
复制代码 代码如下:
商品编号 | 商品名称 | 价格 | 数量 | 购买 |
0 | 购买 | |||
1 | 购买 | |||
2 | 购买 | |||
3 | 购买 | |||
index.php
复制代码 代码如下:
require 'Shopcar.class.php';
session_start();
$name=$_POST['name'];
$num=$_POST['num'];
$price=$_POST['price'];
$product=array('name'=>$name,'num'=>$num,'price'=>$price);
print_r($product);
if(isset($_SESSION['shopcar']))
$shopcar=unserialize($_SESSION['shopcar']);
else
$shopcar=new Shopcar();
$shopcar->add($product);
$_SESSION['shopcar']=serialize($shopcar);
show.php
复制代码 代码如下:
require 'Shopcar.class.php';
session_start();
$shopcar=unserialize($_SESSION['shopcar']);
print_r($shopcar);
$productList=$shopcar->productList;
foreach ($productList as $product){
?>
商品编号 | 商品名称 | 价格 | 数量 |
1 | ' /> |
通过爱站技术频道小编介绍的浅析购物php车实现代码,相信大家都有了一定的了解,感兴趣的小伙伴们可以进入下文参考一下!
上一篇:简单介绍php之错误处理的方法