PHP 5和7-json_last_error差异
作者:互联网
我正在尝试将我的一个PHP应用程序升级到PHP7.除其中一项外,其他所有功能都运作良好.我看到json_last_error()在PHP7中返回了另一个值.
$input = file_get_contents('php://input');
$json = json_decode($input, true);
print_r(json_last_error());
当我做
curl 'http://localhost/test.php' -H 'Content-Type: application/json' --compressed
PHP 5返回0(JSON_ERROR_NONE)
PHP 7返回4(JSON_ERROR_SYNTAX)
我已经查看了官方文档中是否有更改,但是找不到任何信息.
json_decode()或json_last_error()函数是否有变化?
解决方法:
根据changelog of json_decode()
,任何“虚假”字符串值(表示空字符串,null和false)将导致JSON语法错误.因此,是的,PHP 5和PHP 7之间的json_decode()有所更改.但是json_last_error()并未更改.
7.0.0.0的json_encode()变更日志:
An empty PHP string or value that after casting to string is an empty string (NULL, FALSE) results in JSON syntax error.
标签:php-7,json,php 来源: https://codeday.me/bug/20191024/1924442.html