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 创建一个游戏,如果用户达到每 50 分(50、100、150、200、250、300、350、400 ......),我想给他们一些东西
想法:
如果用户有 50 分,他们将在游戏中获得金钱(在 MySQL 查询中)。
我愿意:
$iUserPoints = 50 / 50;
如果结果为“1”,则添加查询。
如果他们有 412 分,结果将是 (412 / 50 = 8,24)。所以他们什么也得不到。
我该如何检查?
您可以使用 Modulu 查看一个数字是否可以被 50 或您选择的任何其他数字整除。
例如在 C# 中你会写:
if ( number % 50 == 0) { Do Something...}
用于 PHP
if ($counter % 50) { echo "This number is not divisible by 50."; } else { echo "This number is divisible by 50."; }