我沃爾德想確定在第一個元素找到所有在yii2,但我還沒有喜歡,就一定能做到這一點,yii2的findall和訪問的第一個元素
這是代碼:
$services = TblWorksTags::find()->where(["active"=>true])->all();
foreach ($services as $service){
echo '<li>'.$service->name.'</li>
}
從上面的代碼我想它有具有不同的類,它是像
$services = TblWorksTags::find()->where(["active"=>true])->all();
foreach ($services as $service) {
//if its the first element
echo '<li class="active">'.$service->name.'</li> //this has a diffrent <li>
//for the other elements
echo '<li>'.$service->name.'</li>
}
你的第二個代碼語法不正確。 ''''和';'錯過了。這是TYPO嗎? –
我糾正了錯字,並沒有修復它 –