Analysis of the implementation principles of scheduled tasks in PHP

不言
Release: 2023-04-01 15:38:02
Original
1285 people have browsed it

This article introduces the implementation principle of scheduled tasks in PHP. Friends who need it can refer to it.

Brief introduction of some relevant knowledge according to the PHP manual:
1. Connection Processing:
Inside PHP, the system maintains the connection status, and its status has three possible situations:
0 - NORMAL (normal)
1 - ABORTED (abnormal exit)
2 - TIMEOUT (timeout)
When the PHP script runs normally in the NORMAL state, the connection is valid. When the remote client disconnects, the ABORTED status flag will be turned on. Interruption of the remote client connection is usually caused by the user clicking the STOP button. When the connection time exceeds PHP's time limit, the TIMEOUT status flag will be turned on.
You can decide whether the script needs to exit when the client disconnects. Sometimes it is convenient to have a script run completely, even if no remote browser accepts the script's output. The default is for the script to exit when the remote client connection is lost. This processing can be controlled by ignore_user_abort in php.ini or by the corresponding "php_value ignore_user_abort" and ignore_user_abort() functions in the Apache .conf settings. If PHP is not told to ignore user interruptions, the script will be interrupted unless a shutdown trigger function is set via register_shutdown_function(). Through this close trigger function, when the remote user clicks the STOP button and the script tries to output data again, PHP will detect that the connection has been interrupted and call the close trigger function.
Scripts may also be interrupted by the built-in script timer. The default timeout limit is 30 seconds. This value can be changed by setting max_execution_time in php.ini or the corresponding "php_value max_execution_time" parameter in the Apache .conf settings or the set_time_limit() function. When the counter times out, the script will exit similar to the above connection interruption situation, and the previously registered shutdown trigger function will also be executed at this time. In the shutdown trigger function, you can check whether the timeout caused the shutdown trigger function to be called by calling the connection_status() function. If a timeout results in a call to the shutdown triggering function, the function will return 2.
One thing to note is that the ABORTED and TIMEOUT states can be valid at the same time. This is possible when telling PHP to ignore user exit actions. PHP will still notice that the user has disconnected but the script is still running. If the running time limit is reached, the script will be exited and the set shutdown trigger function will also be executed. At this point you will find that the function connection_status() returns 3.
2. Related functions:
int ignore_user_abort ( [bool setting] )
This function sets whether a client disconnect should cause a script to be aborted. It will return the previous setting and can be called without an argument to not change the current setting and only return the current setting.
int connection_aborted ( void )
Returns TRUE if client disconnected.
int connection_status ( void )
Returns the connection status bitfield.
In order to update a certain file regularly, the program needs to run automatically. I found two methods from the Internet: ignore_user_abort() and crontab
ignore_user_abort() function is paired with set_time_limit(0) and sleep($interval), that is The program can be automatically run and updated. The following is an example

ignore_user_abort(); //即使Client断开(如关掉浏览器),PHP脚本也可以继续执行. 
set_time_limit(0); // 执行时间为无限制,php默认的执行时间是30秒,通过set_time_limit(0)可以让程序无限制的执行下去 
$interval=60*5; // 每隔5分钟运行 
do{ 
$fp = fopen('test.txt','a'); 
fwrite($fp,'test'); 
fclose($fp); 
sleep($interval); // 等待5分钟 
}while(true);
Copy after login

As long as you run the above page and then close it, the program will continue to run.
There is a simpler method under Linux, which is the crontab command
The function of the crontab command is to schedule the execution of some commands at a certain time interval.
crontab usage: crontab [ -e | -l | -r ] file name -e: edit task -l: display task information -r: delete scheduled execution task information
crontab format:
* * * * * Command
Command to be run by time, day, month and week
crontab example:
*/5 * * * * lynx //m.sbmmt.com
Access every 5 minutes m.sbmmt.com

0 8 * * * lynx //m.sbmmt.com
Visit m.sbmmt.com

0 10 6 * 1-5 at 8 o'clock every morning lynx //m.sbmmt.com
Visit www.jb51.net on the 6th of every month and every Monday to Friday at 10 am
0 5 7 8 * lynx //www.php .cn
Visit m.sbmmt.com at 5 a.m. on August 7th
The above have some special meanings:
"*" represents all numbers within the value range, and "/" represents every Meaning, "*/5" means every 5 units, "-" means from a certain number to a certain number, "," separates several discrete numbers.

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

PHP’s analysis of pseudo-static injection

Use PHP’s scope resolution operator (: :)

The above is the detailed content of Analysis of the implementation principles of scheduled tasks in PHP. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
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 [email protected]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!