PHP7中文手册2018 带注释 最新chm版
file_get_contents获取json的字符串必须规范
第一就是编码问题必须转码成UTF-8字符才能json_decode解析
如:
$html = file_get_contents($url);
$html = iconv('GBK//IGNORE', 'UTF-8', $html);