With the rapid development of Internet technology, many websites need to complete some automated operations through system scheduled tasks. For example, data backup, log cleaning, etc. Among these system scheduled tasks, PHP scheduled tasks are the most widely used. Therefore, the modification of PHP scheduled tasks is very important for website operation and maintenance personnel.
Generally speaking, PHP scheduled tasks can be implemented through crontab. Here, we modify the PHP system scheduled tasks through the Linux system. The specific operations are as follows:
The modification of scheduled tasks needs to be completed in the Linux system, therefore, you first need to open your VPS or remote connection. If you are operating on a Windows system, please first use an SSH client to connect to your Linux system and log in. If you don't know how to connect to a remote Linux system, please learn basic Linux system commands first.
In Linux systems, we can use the crontab command to edit PHP scheduled tasks. The format of the crontab command is as follows:
crontab [-u user] [-l | -r | -e] [-i] [-s] [-c file] [file]
Among them, the -u
parameter is used to specify the user and can generally be omitted. The -l
parameter is used to list all scheduled tasks of the current user, the -e
parameter is used to edit scheduled tasks, the -r
parameter is used to delete scheduled tasks, # The ##-i parameter is used to confirm before deleting the scheduled task, the
-s parameter is used to re-read the crontab file, and the
-c parameter is used to specify the crontab file.
crontab -e
~/crontab file by default.
* * * * * /path/to/php /path/to/file.php
* * * * * represents the time setting of the scheduled task, The order is:
* to represent any value, For example,
* * * * * means execution once every minute. If you want the scheduled task to be executed only at a fixed time, you can set it as follows:
0 0 * * * /path/to/php /path/to/file.php
/path/to/php represents the installation path of PHP, and
/path/to/file.php represents the PHP file to be executed.
Ctrl X to save and exit the editor. If you try to exit without saving your changes, the editor will prompt you to save your changes.
The above is the detailed content of How to modify system scheduled tasks in php. For more information, please follow other related articles on the PHP Chinese website!