Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 PHP 中找到一个数字的所有 muliples。
我正在使用这样的东西
if($count != 20 )
计算是否$count不等于 20。
$count
但我还需要这个脚本来检查是否$count不等于 20、40、60、80、100、120、140、160 等。
有任何想法吗?我想我需要使用模数符号(%),但我不知道。
%
if ($count % 20 != 0)
if ($count % 20 != 0) { // $count is not a multiple of 20 }
如果您不希望排除零:
if ($count % 20 != 0 || $count == 0)
你可以这样做:
if($count % 20 != 0)