作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
当读入我的编辑器时,该文件看起来很好。
$file = file_get_contents('path/to/file.json');
$json = json_decode($file, true);
var_dump($json); // null
echo json_last_error_msg(); //Control character error, possibly incorrectly encoded
关于此错误消息的含义并不多。
最佳答案
您可以删除 control character , PCRE 支持字符类的 POSIX 表示法 [:cntrl:]
$json = preg_replace('/[[:cntrl:]]/', '', $json);
$json = json_decode($json, true);
var_dump($json);
echo json_last_error_msg();
关于php - json_decode 返回 NULL,json_last_error_msg 给出 "Control character error, possibly incorrectly encoded",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24312715/
当读入我的编辑器时,该文件看起来很好。 $file = file_get_contents('path/to/file.json'); $json = json_decode($file, true
我是一名优秀的程序员,十分优秀!