PHP json_decode 为这个 JSON 字符串返回 null
{"action":"online","email":null,"script":null}
验证器显示其有效。帮助?
编辑:使用
echo bin2hex($json);
我明白了
a bunch of padded zeros on the end ...c7d00000000 - Unexpected control character found
需要以某种方式摆脱它们..
答案:
看来我们发现了问题。尝试
$json = trim($json), if it don't fix use $json = preg_replace('/\\\\0+$/', '', $json)
– 哈文纳德