>  기사  >  백엔드 개발  >  关于sleep函数的问题

关于sleep函数的问题

WBOY
WBOY원래의
2016-06-23 13:12:471244검색

我在使用sleep函数的时候发现,  现在访问页面访问不了  一直显示等待localhost响应


set_time_limit(0); // 执行时间为无限制,php默认执行时间是30秒,可以让程序无限制的执行下去	$interval=120; 	do{		$sql="select CPUTotal,UpdateTime from systemcpu where SystemID=$KeyID";		$result=mysql_query($sql);		$rows=mysql_fetch_array($result);		$GetTime= (strtotime($rows["UpdateTime"])-8*60*60)*1000;		sleep($interval);		}while(true);	


回复讨论(解决方案)

do {
   ........
while(true);

这是死循环,当然要一直等待下去

好的   已经知道了   
我试试使用ajax来实现

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.