我想在 php 中读取 JSON:
$productsArr = json_decode(stripslashes($_GET['object'])); //this give me word Array
stripslashes($_GET['object']) //gives me [{"code":"44-3"}]
echo $productsArr->{'code'}; //gives me nothing
我什至试过这个:
foreach($productsArr as $article)
{
echo $article->code; //nothing is echoing
}
如何循环访问 JSON 格式的数据?