Remember this function:
Function Name: Ignore_user_abort
Whether the PHP program continues to execute after this function has been configured or if the use End connection is interrupted. The default value stops when the connection is interrupted. The Ignore_user_abort option in the PHP configuration file (Php3.ini/php.ini) is the configuration section. This feature is only available after PHP version 3.0.7.
Official Note: http://cn2.php.net/manual/en/function.ignore-user-abort.php
How to use:
Copy the Code code as follows:
Ignore_user_abort (TRUE); PHP scripts can continue to execute even if the client disconnects (such as turning off the browser).
This will enable you to achieve your scheduled tasks. However, the client access program is still the only line.
For example, in the generation of static pages, collection, there is no need to wait. Turn off your browser.
Example:
Copy the Code code as follows:
Test
Set_time_limit (0);
Ignore_user_abort (TRUE);
$i = 0;
while ($i + + < 200) {
File_put_contents ($i. php ', $i);
Sleep (3);
}
Using the Ignore_user_abort function to implement PHP planning tasks
Copy the Code code as follows:
Ignore_user_abort (TRUE);
Set_time_limit (0);
while (1) {
$fp = fopen (' Time_task.txt ', "A +");
$STR = Date ("y-m-d h:i:s"). " \n\r ";
Fwrite ($fp, $STR);
Fclose ($FP);
Sleep (5); Execute once in half an hour
}
?>
The above describes the PHP scheduled task PHP task of the closed browser still continue to execute the function, including the PHP program task content, I hope to be interested in PHP tutorial friends helpful.