阅读我的编辑器时文件看起来很好。
$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
此错误消息的含义并不多。
答案 0 :(得分:7)
你可以删除control character,PCRE支持字符类[:cntrl:]
的POSIX表示法
$json = preg_replace('/[[:cntrl:]]/', '', $json);
$json = json_decode($json, true);
var_dump($json);
echo json_last_error_msg();