我有一个我想要json_decode
的数据,数据json_stringify
在发送到 PHP 之前,数据如下所示:
{\"data\":{\"buildingID\":{\"2\":{\"path\":[[11,11],[10,11],[10,10],[9,10],[8,10],[8,9],[8,8],[8,7],[8,6]]}}}}
在我的脚本中,我有:
echo $_GET['as']; //this is what you see above^
$obj = json_decode($_GET['as']);
echo $obj; //no output
var_dump($obj); //this shows NULL
我的错误日志中也没有错误/通知/警告。
我想知道斜线是否会引起某种问题?