php json_decode NULL

$str = 'ssssss';
$arr = json_decode($str, TRUE);
var_dump($arr); // NULL

mixed json_decode ( string $json [, bool $assoc = false [, int $depth = 512 [, int$options = 0 ]]] )

Return Values ¶

Returns the value encoded in json in appropriate PHP type. Values truefalse and null are returned as TRUEFALSE and NULL respectively. NULL is returned if the json cannot be decoded or if the encoded data is deeper than the recursion limit.



你可能感兴趣的:(php json_decode NULL)