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.
我有一个脚本使用sleep(1);了大约 20 次,但我需要知道如何停止 sleep()。
sleep(1);
这是我的例子:
<?php for($i=0;$i<20;$i++){ echo "hi"; sleep(1); if ($whatever == "stop")break; } ?>
无论用户检查什么,这都是用于聊天的机器人脚本,所以 $whatever 用户消息,如果它是“停止”,sleep() 就会停止。
for($i=0; $i<20; $i++) { echo "hi"; if ($whatever != "stop") { sleep(1); } }