PHP Foreach 循环中的不同数组?
我想为每个项目制作一个幻灯片。
它只适用于第一个,对于其他的则不起作用。
知道我做错了什么吗?
我的代码:
<?php
// check $items variable exists and is not empty
if(isset($items) && !empty($items)) :
// init item count
$count = 1;
?>
<div class="shelf">
<?php foreach($items as $key=>$item): ?>
<?php
// calculate if this item is the last on the shelf
// if item number can be divided by 5 with no remainders
$last_item = ( (($count) % 5 == 0)? 'item-last' : '' );
?>
<div class="item <?php echo $last_item; ?>">
<a href="/items/view/<?php echo $item['Item']['slug']; ?>">
<p><?php echo $item['Item']['name'] ?></p>
<div id="CustomSlideshow">
<?php
if ($item['Item']['vidsite'] = 'Pornhub') {
for($i=1;$i<=16;$i++) {
$array[] = str_replace('.jpg',sprintf("%01d",$i).'.jpg',$item['Item']['vidimgdir']);
} ?>
<img src="<?php echo($array[0]); ?>"/>
<img src="<?php echo($array[1]); ?>"/>
<img src="<?php echo($array[2]); ?>"/>
<img src="<?php echo($array[3]); ?>"/>
<img src="<?php echo($array[4]); ?>"/>
<img src="<?php echo($array[5]); ?>"/>
<img src="<?php echo($array[6]); ?>"/>
<img src="<?php echo($array[7]); ?>"/>
<img src="<?php echo($array[8]); ?>"/>
<img src="<?php echo($array[9]); ?>"/>
<img src="<?php echo($array[10]); ?>"/>
<img src="<?php echo($array[11]); ?>"/>
<img src="<?php echo($array[12]); ?>"/>
<img src="<?php echo($array[13]); ?>"/>
<img src="<?php echo($array[14]); ?>"/>
<img src="<?php echo($array[15]); ?>"/>
<?php
$array=array();
} ?>
</div>
</a>
</div>
<?php
// if this is the last item, close the shelf div and create a new one
if(!empty($last_item)) {
echo '<div class="clear"></div>';
echo '</div>';
echo '<div class="shelf">';
}
?>
<?php $count++; ?>
<?php endforeach; ?>
I want to have a Slideshow for each item.
It is only working with the first one, for the others it doesn't work.
Any idea what I'm doing wrong??
My code:
<?php
// check $items variable exists and is not empty
if(isset($items) && !empty($items)) :
// init item count
$count = 1;
?>
<div class="shelf">
<?php foreach($items as $key=>$item): ?>
<?php
// calculate if this item is the last on the shelf
// if item number can be divided by 5 with no remainders
$last_item = ( (($count) % 5 == 0)? 'item-last' : '' );
?>
<div class="item <?php echo $last_item; ?>">
<a href="/items/view/<?php echo $item['Item']['slug']; ?>">
<p><?php echo $item['Item']['name'] ?></p>
<div id="CustomSlideshow">
<?php
if ($item['Item']['vidsite'] = 'Pornhub') {
for($i=1;$i<=16;$i++) {
$array[] = str_replace('.jpg',sprintf("%01d",$i).'.jpg',$item['Item']['vidimgdir']);
} ?>
<img src="<?php echo($array[0]); ?>"/>
<img src="<?php echo($array[1]); ?>"/>
<img src="<?php echo($array[2]); ?>"/>
<img src="<?php echo($array[3]); ?>"/>
<img src="<?php echo($array[4]); ?>"/>
<img src="<?php echo($array[5]); ?>"/>
<img src="<?php echo($array[6]); ?>"/>
<img src="<?php echo($array[7]); ?>"/>
<img src="<?php echo($array[8]); ?>"/>
<img src="<?php echo($array[9]); ?>"/>
<img src="<?php echo($array[10]); ?>"/>
<img src="<?php echo($array[11]); ?>"/>
<img src="<?php echo($array[12]); ?>"/>
<img src="<?php echo($array[13]); ?>"/>
<img src="<?php echo($array[14]); ?>"/>
<img src="<?php echo($array[15]); ?>"/>
<?php
$array=array();
} ?>
</div>
</a>
</div>
<?php
// if this is the last item, close the shelf div and create a new one
if(!empty($last_item)) {
echo '<div class="clear"></div>';
echo '</div>';
echo '<div class="shelf">';
}
?>
<?php $count++; ?>
<?php endforeach; ?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的猜测是您忘记了一个等号,因此您的代码不断向
$item['Item']['vidsite']
分配相同的值。一个等号 (
=
) 将值分配给项目,两个等号 (==
) 比较操作数,因此您应该将=
替换为 <代码>==。也许您已经知道这一点,只是输错了。别担心,我也曾经犯过这个错误。 ;)
顺便说一句 - 如果我是你,我会将以下代码替换
为:
更短。
My guess is you have forgotten one equality sign, so your code keeps assigning the same value to
$item['Item']['vidsite']
.One equality sign (
=
) assigns the value to the item, two (==
) compare the operand, thus you should replace=
with==
.Perhaps you already knew this and have just mistyped it. Don't worry, I also used to make this mistake. ;)
And by the way - if I were you, I'd replace the following code:
with this one:
Much shorter.