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.
我想在最小和最大条件下生成 10 的随机数。示例 10、40、20、100、60。10 到 100 之间的数字
以下部分将给出您想要的随机数
mt_rand(ceil($min/10) , floor($max/10))*10;
在请其他人帮助您之前,请先自己尝试一下。