我正在尝试使用我以前使用过的Joomla来适应我的bootstrap(3)传送带,并增加模块的数量并计算其数量。
我现在在1个模块中拥有所有图像,并希望对幻灯片进行计数并添加指示器(并且在第一个类上显示“ active”,而幻灯片显示atm)。
此刻,我只得到了1个要点,而在HTML上这样的样子:
<ol class="carousel-indicators">
<li data-target="#carousel" data-slide-to="0" class=""></li>
</ol>
这是我到目前为止的代码:
<ol class="carousel-indicators">
<?php
$html='<div class="item">';
$count = substr_count($html,'<div class="item">');
for($i = 0; $i < $count; $i++) {
echo "<li data-target='#carousel' data-slide-to=".$i."></li>";
}
?>
</ol>