|
本帖最后由 cmsphp 于 2011-6-10 07:49 编辑
关于购物车数组里name 为什么不能是中文? 在线等。
PHP复制代码 $data = array(
'id' => 'sku_123ABC',
'qty' => 1,
'price' => 39.95,
'name' => 'T-Shir',
'options' => array('Size' => 'L', 'Color' => 'Red')
);
//print_r($data);
//exit;
$this->cart->insert($data); 复制代码
要是把HTML复制代码 'name' => 'T-Shir',改成 'name' => '中国', 复制代码
PHP复制代码 $data = array(
'id' => 'sku_123ABC',
'qty' => 1,
'price' => 39.95,
'name' => '中国',
'options' => array('Size' => 'L', 'Color' => 'Red')
);
//print_r($data);
//exit;
$this->cart->insert($data); 复制代码
这样就不行了 |
|