opencart 商品说明乱码_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > opencart 商品说明乱码

opencart 商品说明乱码

 2012/9/8 11:53:48  ynial  程序员俱乐部  我要评论(0)
  • 摘要:opencart一个不错的电商开源框架,一个小问题opencart商品说明乱码简单看了一下源码,在opencart\catalog\controller\product\category.php中找到'description'=>$this->msubstr(strip_tags(html_entity_decode($result['description'],ENT_QUOTES,'UTF-8')),0,100)...','修改一下就OK了windows下开发确保PHP
  • 标签:
opencart 一个不错的电商开源框架,一个小问题opencart 商品说明乱码
简单看了一下源码,
在opencart\catalog\controller\product\category.php 中
找到
 'description' => $this->msubstr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, 100) ...', '



修改一下就OK了
windows 下 开发 确保PHP.INI 的 extension=php_mbstring.dll  是可用的
'description' => mb_substr(strip_tags(html_entity_decode($result['description'], ENT_QUOTES, 'UTF-8')), 0, 100, 'utf-8') . '..',
					

  • 相关文章
发表评论
用户名: 匿名