首页 > 其他 > 详细

CI 框架购物车问题

时间:2014-09-11 01:08:41      阅读:351      评论:0      收藏:0      [点我收藏+]
 1 因为CI  是外国的框架。购物逻辑和中国的不一样。所以需要改进ci  框架的 cart  类;
 2 
 3 
 4 
 5 (1)先把 cart类拷贝一份到application/libaries/ 6 
 7 
 8 
 9 (2)因为cart中购车中的商品名称不支持中文,所以对于我们中国人来说,是一件和痛苦的事情;所以禁用掉大概184行里代码:如下 
10         /***   禁止中文  外国的框架就是坑
11         // Validate the product name. It can only be alpha-numeric, dashes, underscores, colons or periods.
12         // Note: These can be user-specified by setting the $this->product_name_rules variable.
13         if ( ! preg_match("/^[".$this->product_name_rules."]+$/i", $items[‘name‘]))
14         {
15             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‘);
16             return FALSE;
17         }
18          ****/
19 
20 (3)计算商品的种类  不符合中国逻辑
21 
22 禁用掉388行
23            //$items += $val[‘qty‘];   
24 
25 改进改代码
26          $items++;
27     

 

CI 框架购物车问题

原文:http://www.cnblogs.com/hgj123/p/3965517.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!