Heim  >  Artikel  >  Backend-Entwicklung  >  PHP中捕获超时事件的方法实例,php捕获超时实例_PHP教程

PHP中捕获超时事件的方法实例,php捕获超时实例_PHP教程

WBOY
WBOYOriginal
2016-07-13 10:07:021364Durchsuche

PHP中捕获超时事件的方法实例,php捕获超时实例

set_error_handler()不能捕获致命错误(具体错误类型见手册)。

所以需要如下方法:

<&#63;php
ini_set ( 'max_execution_time', 1 );
function shutdown() {
 $a = error_get_last ();
 print_r ( $a );
}
register_shutdown_function ( 'shutdown' );
while ( true ) {
}

注意:sleep()停顿时间不算在max_execution_time中。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/957121.htmlTechArticlePHP中捕获超时事件的方法实例,php捕获超时实例 set_error_handler()不能捕获致命错误(具体错误类型见手册)。 所以需要如下方法: phpini_set (...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn