Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
ignore_user_abort() function in PHP
The ignore_user_abort() function sets whether a remote client can abort the running of a script.
Syntax
ignore_user_abort(setting)
Parameters
setting − True ignores user aborts in a script (the script will continue to run). This is false by default i.e. client aborts will cause the script to stop running
Return
The ignore_user_abort() function returns previous value of the user-abort setting.
Example
The following is an example that sets to false i.e. the default. Client aborts will cause the script to stop running.
Output
The following is the output.
0
Advertisements
