我有以下PHP陣列結構:通過PHP數組循環
$set = array();
$set[] = array('firstname'=>'firstname 1',
'lastname'=>'lastname 1',
"bio"=>array('paragraph 1 of the bio, 'paragraph 2 of the bio','paragraph 3 of the bio'),
);
我然後用下面的訪問數組:
<?php $counter = 0;
while ($counter < 1) : //1 for now
$item = $set[$counter]?>
<h1><?php echo $item['firstname'] ?></h1>
<h1><?php echo $item['lastname'] ?></h1>
<?php endwhile; ?>
我不確定我怎麼可以遍歷「生物「部分陣列並回顯每一段。所以作爲最後的輸出,我應該有兩個h1s(姓和名)和三個段落(生物)。
我該如何去做這件事?
FYI你缺少一個單引號中的生物初始化 – Sharlike
所有優秀的答案。如果我能接受他們,我會的。謝謝大家! – hellofavision