1. 程式人生 > >php+cookie 實現購物車

php+cookie 實現購物車

           $cartUnSer[] = array(    // 要新增到cookie中的商品資料   以陣列的方式可以避免多個的話覆蓋
                'id'=>$id,
                'title'=>$item['title'],
                'price'=>$item['price'],
                'img' =>$item['img'],
                'type'=>$item['type'],
                'num'=>1, //預設的數量為1
            );
            $cartSer = serialize($cartUnSer);  //序列化陣列
            setcookie('Cart',$cartSer,time()+36000);//儲存cookie