如何使这行PHP更短?
作者:互联网
我也有这个循环,它将计算输出:
while ($wp_query->have_posts()) : $wp_query->the_post(); $current++; $current2++;
然后要调用适当的html类,我需要在我的设计中使用它:
<div class="span4 <?php if($current == 0) { echo 'first'; } elseif($current == 1) { echo 'second'; } elseif($current == 2) { echo 'first'; } elseif($current == 3) { echo 'second'; } ?>" id="<? echo $current; ?>">
$count从0开始,$count2从1开始.输出应如下所示:如果0 = first,1 = second,2 = first,3 = second等.如何使用无限数量的$count使该表达式更短?希望我的问题清楚.感谢您为我提供帮助的人.
解决方法:
如果我了解您在这里的要求,我想您想将div替换为“第一”和“第二”类吗?
因此,您可以使用%模运算符(请参见http://php.net/manual/en/internals2.opcodes.mod.php)
<div class="span4 <?php echo ($current % 2 === 0 ? 'first' : 'second'); ?>" id="<? echo $current; ?>">
标签:php,loops,count,alternate 来源: https://codeday.me/bug/20191013/1905766.html