是否可以将价格值添加到 Codeigniter 购物车类中的产品选项。例如:T 恤价格为 10.00 美元,但 XXL 尺寸需额外支付 2.00 美元。
$data = array(
'id' => 'abc',
'qty' => 1,
'price' => 10.00,
'name' => 'T-Shirt',
'options' => array('Size' => 'XXL') // Where would you add $2.00 for XXL?
);
$this->cart->insert($data);