1
以下數組有多個數據數組。某些數據陣列的字段爲message
,而另一些則沒有。PHP從數組中獲取數據
我想從具有這些字段的數組中獲得message
和created_time
字段。
我可以得到的數據不循環,例如:
$msg = $json['posts']['data'][0]['message'];
,但我該如何使用循環,並從其中有一個領域的所有陣列的消息字段。
Array
(
[id] => 1234
[posts] => Array
(
[data] => Array
(
[0] => Array
(
[id] => 123_456
[from] => Array
(
[name] => User Name
[id] => 123
)
[message] => This is the message i want to get.
[privacy] => Array
(
[value] =>
)
[type] => status
[status_type] => mobile_status_update
[created_time] => 2013-01-13T11:09:55+0000
[updated_time] => 2013-01-13T11:09:55+0000
[comments] => Array
(
[count] => 0
)
'$ json ['data']'沒有設置。看看原始數組。 – hohner
'$ json ['posts'] ['data']',我的錯誤 –