PHP scheduled task: how to use Linux Crontab to execute PHP script _ PHP Tutorial

Source: Internet
Author: User
[Switch] PHP scheduled tasks: how to use Linux Crontab to execute PHP scripts. Turn: www.centos.bz2 01103auto-run-task-crontab our PHP program sometimes needs timed execution, we can use the ignore_user_abort function or place js on the page for users to help turn: https://www.centos.bz/2011/03/auto-run-task-crontab/

Our PHP program sometimes needs timed execution. we can use the ignore_user_abort function or place js on the page to help us implement it. However, both methods are unreliable and unstable. We can use the Linux Crontab tool to trigger PHP execution tasks stably and reliably.
The following describes two methods of Crontab.

1. use PHP to execute scripts in Crontab

Just like calling a common shell script in Crontab, you can use a PHP program to call the PHP script.
Execute myscript. php every hour as follows:

  1. # Crontab-e
  2. 00 ***/usr/local/bin/php/home/john/myscript. php

/Usr/local/bin/php is the path of the PHP program.

2. use the URL in Crontab to execute the script

If your PHP script can be triggered through a URL, you can use lynx, curl, or wget to configure your Crontab.
The following example uses the Lynx text browser to access the URL and execute the PHP script hourly. By default, the Lynx text browser opens a URL in dialog mode. However, as shown below, we use the-dump option in the lynx command line to convert URL output to standard output.

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

The following example uses CURL to access the URL and execute the PHP script every 5 minutes. Curl displays the output in standard output by default. With the "curl-o" option, you can also dump the script output to a temporary file.

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

The following example uses the wget url to execute the PHP script every 10 minutes. -Q indicates quiet mode. "-O temp.txt" indicates that the output will be sent to a temporary file.

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

When our PHP program sometimes needs timed execution, we can use the ignore_user_abort function or place js on the page to help users...

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.