我想在PHP讀取JSON JSON對象:無法讀取PHP
$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格式的數據?
JSON的外觀如何? – StephenTG
你是什麼意思? –
Post'print_r($ _ GET ['object'])''。 –