-
-
class Shopcar
- {
- //商品清單
- public $productList=array();
- / * *
- *
- * @param unknown_type $product 傳進來的商品
- * @return true 購物車裡面沒有該商品
- */
- 公用函數checkProduct($product)
- {
- for($i=0;$iproductList);$i++ )
- {
- if($this->productList[$i]['name']==$product['name'])
- 回傳$i;
- }
- 回傳-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;
- }
- }
複製程式碼
2、productList.html
-
-
-
-
- php購物車-商品清單頁-bbs.it-home.org
-
-
-
商品編號 |
商品名稱 |
價格 |
數量 |
購買 |
0 td> |
|
1-
|
|
購買 font> |
1 |
商品2標籤> |
2標籤>-
|
td> |
購買 | ;
2 |
商品3 |
1標籤>-
|
|
購買 |
3 |
商品4標籤> |
1標籤>-
| |
購買 |
-
查看購物車
-
|