php设置页面超时时间解决方法
php完成某些操作的时候,可能需要较长的执行时间。这就需要设置他的执行时间,否则服务器会在执行时间超时后,停止执行,页面出现空白的情况。下面推荐两种解决方案:
php文件页面设置:
<?php//修改最大执行时间ini_set('max_execution_time', '0');//修改此次最大运行内存ini_set('memory_limit','128M');/*** * * 代码块省略...... * * */?>
php.ini配置文件设置(具体值,根据需要设置):
max_execution_time = 60
memory_limit = 128M
注意:如果执行内存完全满足的话,就不需要设置了。具体设置,根据情况灵活设置。
php之curl设置超时实例
PHP CURL超时设置分两种,毫秒跟秒都是可以的。
curl普通秒级超时:
$ch = curl_init();curl_setopt($ch, CURLOPT_URL,$url)
;curl_setopt($ch, CURLOPT_RETURNTRANSFER,1)
;curl_setopt($ch, CURLOPT_TIMEOUT,60)
; //只需要设置一个秒的数量就可以curl_setopt($ch, CURLOPT_HTTPHEADER, $headers)
;curl_setopt($ch, CURLOPT_USERAGENT, $defined_vars['HTTP_USER_AGENT'])
;curl普通秒级超时使用:
curl_setopt($ch, CURLOPT_TIMEOUT,60)
;curl如果需要进行毫秒超时,需要增加:curl_easy_setopt(curl, CURLOPT_NOSIGNAL,1L)
;//或者curl_setopt ( $ch, CURLOPT_NOSIGNAL,true)
;//支持毫秒级别超时设置
如果php运行超时怎么返回超时错误给前端
返回前端只适用于是使用AJAX进行加载的。var res = $.ajax({ url:'xxxxxx/index.php', timeout : 1000, //超时时间设置,单位毫秒 complete : function(xhr,status){ if(status=='timeout'){ // 超时处理 } }});