PHP 防止 while true循环 CPU 使用率过高的方法 2017-07-05 本文已影响0人 魔法师_ <?php $i = 0; while (true) { //业务逻辑 $i++; if ( $i%30==0 ){ sleep(1); } } ?>