2015-09-05 95 views

回答

0

用戶有很多文章,當您嘗試訪問user -> post你會得到一個錯誤,因爲你正在嘗試一組對象。
所以,你需要遍歷user -> posts as post來訪問每個用戶帖子

$users = 
{ 
    "id":1, 
    "name":"joe", 
    "posts: 
    [ 
    {"id":1,"title":"post 1"}, 
    {"id":2,"title":"post 2"} 
    ] 
} 
foreach ($users -> posts as $post) 
{ 
    echo $post -> title; 
} 

希望這有助於。

相關問題