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 形式のデータにアクセスする方法は?