|
本帖最后由 kao10324 于 2017-8-29 15:21 编辑
class Client_cart extends CI_Controller {
function __construct()
{
parent::__construct();
$this->load->library('session');
$this->load->library('cart');
}
function test(){
$data = array(
'id' => 'sku_123ABC',
'qty' => 1,
'price' => 39.95,
'name' => 'T-Shirt',
'options' => array('Size' => 'L', 'Color' => 'Red')
);
$this->cart->insert($data);
}
function test1(){
$cart = $this->cart->contents();
print_r($cart);
}test()可以输出数据..test1()输出空白.这是什么情况.写入到购物车后..生命周期立马就没了吗?
路径使用的是http://域名/文件夹/ci目录
|
|