JSONデータ
"orders":[
"billing_details":{
"company":"Test Company",
"firstname":"Munadil",
"postcode":"5000",
"street":"Dhaka, Bangladesh",
"email":"[email protected]",
"lastname":"Fahad",
"ph_number":"880191111111",
"city":"Dhaka",
"state":"Mirpur",
"country_code":"BN",
"user_id":16003511,
"salutation":null
}]
$json_output = json_decode($response);
foreach ($json_output->orders as $orders){
foreach ($orders->billing_details as $billing_details) {echo "<b>Name:</b><br>".$billing_details->firstname." ".$billing_details->lastname."<br>";}
}
PHPでPHPでjsonオブジェクトのプロパティをエコーするには?
しかし、私は、エラーメッセージの下に取得しています、
お知らせ:中....
非オブジェクトのプロパティを取得しようとすると、配列 "orders"の下にある "billing_details"オブジェクトのデータをエコーする方法はありますか?
'billing_details'は、アレイ内のキーです。 '' orders ''を試してください:[{...}] ' –
変数$ ordersをどこで宣言しましたか? – victor
これは無効なJSONです。 – trincot