PHP:如果语句匹配多个值不打印任何内容,则 elseif 打印一个 div。怎样?
晚上好!
作为一个完全的 PHP-n00b,我在这里问,希望一些聪明的大脑可以帮助我。 情况是这样的:
<?php if(wpsc_product_count() == 3 ) :?>
<div class="productseparator"></div>
<?php endif ; ?>
现在,我想要的结果如下: 如果 wpsc_product_count 匹配 3、6、9、12、15、18、21、24、27 或 30 - 我希望它什么也不打印。所有其他值都应打印 .productseparator DIV。
提前一百万致谢!
Good evening!
Being a total PHP-n00b I'm asking here hoping some clever brain out there can help me out.
This is the case:
<?php if(wpsc_product_count() == 3 ) :?>
<div class="productseparator"></div>
<?php endif ; ?>
Now, what I want out of this is the following:
If wpsc_product_count matches 3, 6, 9, 12, 15, 18, 21, 24, 27 or 30 - I would like it to print nothing at all. Every other value should print the .productseparator DIV.
Thanks a million in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用这个函数:
Use this function:
试试这个
Try this
相关此处的手册页。
relevant man page here.
一种方法:
使用“%”运算符将为您提供 a/b 的余数。
One approach:
using the '%' operator will give you the remainder of a/b.