PHP Scheduled tasks: How to execute PHP scripts using Linux crontab

Source: Internet
Author: User

Our PHP program sometimes needs to be executed periodically, we can use the Ignore_user_abort function or put JS on the page to let the user help us to achieve. But neither of these methods is reliable and unstable. We can use the Linux crontab tool to reliably trigger PHP to perform tasks.
Here are two ways to crontab.

First, use PHP to execute script in crontab

Just like calling a normal shell script in crontab (specific crontab usage), use a PHP program to invoke the PHP script.
Each hour executes myscript.php as follows:

    1. # CRONTAB-E
    2. XX * * * */usr/local/bin/php/home/john/myscript.php

/usr/local/bin/php is the path to the PHP program.

Second, use URL to execute script in crontab

If your PHP script can be triggered by a URL, you can use Lynx or curl or wget to configure your crontab.
The following example uses the Lynx text browser to access the URL to execute PHP scripts every hour. The Lynx text browser opens the URL by default using dialog. However, like the following, we use the-dump option in the Lynx command line to convert the output of the URL to standard output.

    1. XX * * * * lynx-dump http://www.centos.bz/myscript.php

The following example uses Curl to access the URL to execute PHP scripts every 5 minutes. Curl defaults to show output in standard output. With the "curl-o" option, you can also dump the output of the script to a temporary file.

    1. */5 * * * */usr/bin/curl-o temp.txt http://www.centos.bz/myscript.php

The following example uses the wget access URL to execute PHP scripts every 10 minutes. The-q option indicates quiet mode. "-O Temp.txt" indicates that the output is sent to a temporary file.

      1. */10 * * * */usr/bin/wget-q-o temp.txt http://www.centos.bz/myscript.php

PHP Scheduled tasks: How to execute PHP scripts using Linux crontab

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.