Home > php教程 > php手册 > php ignore_user_abort与register_shutdown_function 使用方法

php ignore_user_abort与register_shutdown_function 使用方法

WBOY
Release: 2016-06-13 12:23:30
Original
1061 people have browsed it

语法: int ignore_user_abort(int [setting]);

返回值: 整数

函数种类: PHP 系统功能

内容说明
0 - NORMAL(正常)1 - ABORTED(异常退出)2 - TIMEOUT(超时)
本函数配置或取得使用端连接中断后,PHP 程序是否仍继续执行。默认值为中断连接后就停止执行。在 PHP 配置文件中 (php3.ini/php.ini) 的 ignore_user_abort 选项就是配置处。本功能在 PHP 3.0.7 版之后才开始提供。


connection_status

取得连接状态。

语法: int connection_status(void);

返回值: 整数

函数种类: 网络系统

内容说明

本函数可返回连接状态。使用时不须输入参数

register_shutdown_function

定义 PHP 程序执行完成后执行的函数。

语法: int register_shutdown_function(string func);

返回值: 整数

函数种类: PHP 系统功能

内容说明

本函数向系统定义 PHP 程序 (Script) 执行结束之后所要执行的函数。当执行该指定的函数时,由于无法看到返回值,因此调试较困难。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template