VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • Codeigniter 购物车类不能添加中文解决方法

有朋友可能会发现Codeigniter 购物车类不能添加中文,我找了N久才发现下面一段代码限制了输入中文了,修改systemlibrariesCart.php,注释第186-190行产品名称的判断,代码如下:

  1. /*if ( ! preg_match("/^[".$this->product_name_rules."]+$/i", $items['name']))  
  2.  
  3.      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');  
  4.      return FALSE;  
  5.   } 
  6. */  

不过删除不是最好的办法,我们可以直接把正则匹配改成中文也可以就行了.

 

出处:http://www.phpfensi.com/php/20131204/763.html


相关教程