有朋友可能會發現Codeigniter 購物車類不能添加中文,我找了N久才發現下面一段代碼限制了輸入中文了,下面我來給大家介紹。
修改systemlibrariesCart.php,注釋第186-190行產品名稱的判斷:
代碼如下 復制代碼/*if ( ! preg_match("/^[".$this->product_name_rules."]+$/i", $items['name']))
{
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;
}
*/
不過刪除不是最好的辦法,我們可以直接把正則匹配改成中文也可以就行了,這個我就不介紹了大家可到php教程頻道去查看。