I have this array
(我有这个数组)
Array
(
[data] => Array
(
[0] => Array
(
[page_id] => 204725966262837
[type] => WEBSITE
)
[1] => Array
(
[page_id] => 163703342377960
[type] => COMMUNITY
)
)
)
My question is how can I just echo the content without this structure?
(我的问题是如何在没有这种结构的情况下回复内容?)
I tried (我试过了)
foreach ($results as $result) {
echo $result->type;
echo "<br>";
}
ask by EnexoOnoma translate from so 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…