示例:如果我的Vcard有10个联系人。显示10个列表组。
我尝试循环:for($i=0; $i<$vcard; $i++)
在html中:<a href="" class="list-group-item"> </a>
在PHP中:我不知道如何创建
我现在不知道。你能帮助我吗?
在html中 在PHP我不知道如何创建
答案 0 :(得分:2)
假设$vcard
是一个你可以做的数组
foreach($vcard as $contact) {
// do something with the data of $contact
}
但您也可以使用for
- 循环
for($i=0; $i < count($vcard); $i++) {
// do something with data of $vcard[$i]
}