CI框架,全名CodeIgniter,相信大家都不陌生,她是一個小巧的php框架,CI中國官方網站文檔也很全面,現在ci4.0也出來了,加入了命名空間。
不過我個人還是比較喜歡它的2.0版本。
後期版本已經廢棄了購物車功能,但對於正在使用ci2.0同學們來說,我總結出購物車類別的幾個bug,
程式碼如下:
1.對產品名稱的判斷規則對中文不友善。經常導致添加失敗。
//log_message('error', 'An invalid name was submitted as the product name: '.$items['name'].' The name can only contain alpha-numeric characters, dashes, underscores, colons, and spaces'); //return FALSE;
2.數量不變時,無法修改購物車資訊
if ($this->_cart_contents[$items['rowid']]['qty'] == $items['qty']) { //return FALSE; }
3.只能修改數量,無法修改附加選項options
修改options附加選項
$this->_cart_contents[$items['rowid']]['qty'] = $items['qty']; $this->_cart_contents[$items['rowid']]['options'] = $items['options'];//here new?
本文由php中文網提供,
原文網址:http://www.php.cn/php -weizijiaocheng-374137.html
請勿轉載~~~~
以上是記CI2.0購物車類的3個坑的詳細內容。更多資訊請關注PHP中文網其他相關文章!