PHP Foreach 循环中的不同数组?

发布于 2024-11-02 09:27:48 字数 2633 浏览 2 评论 0原文

我想为每个项目制作一个幻灯片。

它只适用于第一个,对于其他的则不起作用。

知道我做错了什么吗?

我的代码:

<?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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深海蓝天 2024-11-09 09:27:48
if ($item['Item']['vidsite'] = 'Pornhub') {

我的猜测是您忘记了一个等号,因此您的代码不断向 $item['Item']['vidsite'] 分配相同的值。
一个等号 (=) 将值分配给项目,两个等号 (==) 比较操作数,因此您应该将 = 替换为 <代码>==。
也许您已经知道这一点,只是输错了。别担心,我也曾经犯过这个错误。 ;)


顺便说一句 - 如果我是你,我会将以下代码替换

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]); ?>"/>

为:

for($i=0;$i<=15;$i++) {
   $array[] = str_replace('.jpg',sprintf("%01d",$i).'.jpg',$item['Item']['vidimgdir']);
   echo '<img src="'.$array[$i].'"/>';
} ?>

更短。

if ($item['Item']['vidsite'] = 'Pornhub') {

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:

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]); ?>"/>

with this one:

for($i=0;$i<=15;$i++) {
   $array[] = str_replace('.jpg',sprintf("%01d",$i).'.jpg',$item['Item']['vidimgdir']);
   echo '<img src="'.$array[$i].'"/>';
} ?>

Much shorter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文