当前位置:首页 > PHP教程 > php应用 > 列表

PHP函数超时处理方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-09 22:48:48 浏览: 评论:0 

这篇文章主要介绍了PHP函数超时处理方法,结合实例形式分析了基于register_shutdown_function的超时处理相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下。

本文实例讲述了PHP函数超时处理方法,分享给大家供大家参考,具体如下:

register_shutdown_function

Registers the function named by function to be executed when script processing is complete or when exit() is called.

此函数可以重复注册,然后会依次调用 当发生致命性错误或者exit时都会调用此函数

  1. error_reporting(0); 
  2. register_shutdown_function ( 'handleShutdown' ); 
  3. function handleShutdown (){ 
  4.   $error = error_get_last (); 
  5.   // 根据错误信息,判断是否是超时了 
  6.   if ( $error && strpos ( $error [ 'message' ], 'Maximum exec' )!== false ) 
  7.   { 
  8.     echo 'handle time out'
  9.   } 
  10. set_time_limit(2); 
  11. sleep(3);

Tags: PHP函数超时处理

分享到: