php -r 'echo $a = json_encode("12");echo json_decode($a)."***";' 在 5.1.6 版本中输出"12",json_decode 返回 null。 在 5.3.4 就输出 "12"12 ,为何??
php -r 'echo $a = json_encode("12");echo json_decode($a)."***";'