我有問題。如何僅從json數據獲取內容。從PHP獲取json數據的內容
My JSON Data:
array(
(int) 0 => '{"html":"Lorem Ipsum \u2013 Lorem Ipsum \u2013 Lorem Ipsum - Lorem Ipsum \u2013 Lorem Ipsum \u2013 Lorem Ipsum \u2013 Lorem Ipsum"}',
(int) 1 => '{"text":"Lorem Ipsum"}',
(int) 2 => '{"text":"01 June-30 September"}',
(int) 3 => '{"text":"7 nights \/ 8 days"}',
(int) 4 => '{"text":"Lorem Ipsum"}'
);
我想要得到的HTML和文本內容僅
Lorem Ipsum
Lorem Ipsum
01 June-30 September
我試圖用json_decode
。
我的代碼:
foreach($array as $i) {
$a = json_decode($i);
echo $a;
}
任何人幫助我嗎?
使用['json_decode'](http://php.net/manual/en/function.json-decode.php)。它會返回一個對象。你可以從中得到你所需要的。 – Andrew
是的。我試圖使用'json_decode'。 ($ content as $ i){ $ a = json_decode($ i); echo $ a; }' _Error message:class stdClass的對象無法轉換爲string_ – user1999
使用...'echo $ a-> text;' – DanFromGermany