首页 > 开发 > PHP > 正文

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

2024-05-04 22:39:11
字体:
来源:转载
供稿:网友

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

所以需要如下方法:

<?phpini_set ( 'max_execution_time', 1 );function shutdown() { $a = error_get_last (); print_r ( $a );}register_shutdown_function ( 'shutdown' );while ( true ) {}

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

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表