PHP register_shutdown_function()函数的使用示例_PHP
也就是说,当我们的脚本执行完成或者意外死掉导致 php 执行即将关闭时,我们的这个函数会被调用。
【使用场景】
① 页面被(用户)强制停止
② 程序代码意外终止或超时
③ php4 中没有析构函数,可以使用该函数模拟析构函数
shutdown.php
代码如下:
header("content-type:text/html;charset=utf-8");
class Shutdown{
public function endScript(){
if(error_get_last()){
echo '
';';
print_r(error_get_last());
echo '
}
file_put_contents('D:\practise\php\Error\error.txt', 'this is a test');
die('脚本结束');
}
}
register_shutdown_function(array(new Shutdown(), 'endScript'));
//错误测试
echo md6();
执行,输出:
代码如下:
( ! ) Fatal error: Call to undefined function md6() in D:\practise\php\Error\shutdown.php on line 18
Array
(
[type] => 1
[message] => Call to undefined function md6()
[file] => D:\practise\php\Error\shutdown.php
[line] => 18
)
脚本结束
代码如下:
D:\practise\php\Error\error.txt:
this is a test
注意:register_shutdown_function 方法是从内存中调用的,因此在使用 file_put_contents 方法时,第一个参数一定要使用绝对路径。
上一篇: 一个HTML标签助手
推荐阅读
-
PHP使用empty检查函数返回结果时报Fatal error: Can't use function return value in write context的问题 - 心中的飞梦
-
PHP的惰性加载跟Iterator的使用
-
有关php array_values()函数的文章推荐10篇
-
php中过滤html代码的函数 提高程序安全性_PHP
-
PHP网站安装程序制作的原理、步骤、注意事项和示例代码_PHP教程
-
PHP中的integer类型使用分析_PHP教程
-
在WordPress中使用wp_count_posts函数来统计文章数量_PHP
-
PHP 生成器的使用详解
-
PHP各版本的函数类型声明详解
-
浅谈使用PHP开发微信支付的流程