<?php
$i = 0;
while (true) {
//业务逻辑
$i++;
if ( $i%30==0 ){
sleep(1);
}
}
?>
<?php
$i = 0;
while (true) {
//业务逻辑
$i++;
if ( $i%30==0 ){
sleep(1);
}
}
?>
本文标题:PHP 防止 while true循环 CPU 使用率过高的方法
本文链接:https://www.haomeiwen.com/subject/uqjchxtx.html
网友评论