我有一个 foreach 循环,我需要编号的类,所以我设置了一个计数器:
<?php
$counter = 0;
?>
<?php
$html = '';
foreach ($json['feed']['entries'] as $entries){
$counter++;
$html .= '<a href="' .$entries['link']. '"><span class="feeddisplay_title">'.$entries['title']. ' </span></a>';
if($entries['publishedDate'] != '') {
$html .='<span class="feeddisplay_date">' .$entries['publishedDate']. '</span>';
}
$html .= '<p>' .$entries['contentSnippet']. '</p>';
}
?>
<div class="box feed-<?php echo $counter; ?>">
<div class="box-heading"><?php echo $heading_title; ?>:</div>
<div class="box-content">
<div class="feeddisplay"><?php echo $html ?></div>
</div>
</div>
我的输出类一遍又一遍地是“feed-1”。它上不去。我尝试了一些变化,但我被卡住了。