发布时间:2023-03-30
739
0
json_decode 返回NULL 用 json_last_error()
查看报错int
例如:3
解决解决办法:
$result = preg_replace('/[\x00-\x1F\x80-\x9F]/u', '', trim($result));
4:
$content = mb_detect_encoding($jsonStr, array("ASCII",'UTF-8',"GB2312","GBK",'BIG5')); $json= mb_convert_encoding($content tent , "UTF-8", "GBK"); //将字符串转为UTF-8 (在知道字符串是gbk的时候使用,如果字符串已经是utf-8了,不要用这个函数) $json= mb_convert_encoding($str, "UTF-8", "auto"); //未知原编码,通过auto自动检测后,转换编码为utf-8
发表评论
留言: