码迷,mamicode.com
首页 > Web开发 > 详细

PHP5.3 htmlentities与json_encode的坑

时间:2015-07-03 16:11:55      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:php5.3 htmlentities json_encode

今天在线上使用了

json_encode(htmlentities($value))

发现出现了!

[03-Jul-2015 02:52:44 UTC] PHP Warning:  json_encode_plus() [<a href=‘function.json-encode-plus‘>function.json-encode-plus</a>]: Invalid UTF-8 sequence in argument in /home/users/ouerqiang/fbiz/framework/BizBootstrap.php on line 106


乍一看,不知道出现了什么问题,经过看来资料发现PHP 5.4之前的

htmlentities(string,quotestyle,character-set)

其中character-set=SO-8859-1。

如果里面有中文的话就就乱码了不能转义了,json_encode只认UTF-8.导致出现报错。

改为

htmlentities($instance,ENT_QUOTES ,‘UTF-8‘)


解决


本文出自 “梦朝思夕” 博客,请务必保留此出处http://qiangmzsx.blog.51cto.com/2052549/1670507

PHP5.3 htmlentities与json_encode的坑

标签:php5.3 htmlentities json_encode

原文地址:http://qiangmzsx.blog.51cto.com/2052549/1670507

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!