The implementation method of PHP simple timed execution task

Source: Internet
Author: User

This article mainly introduced the PHP simple time to carry out the task the realization method, involves the curl and the sleep and so on the operation skill, has certain reference value, the need friend may refer to under

This article is an example of the implementation of PHP simple timing task implementation. Share to everyone for your reference. The implementation methods are as follows:

?
1 2 3 4 5 6 7 8 9 10 11 12 13 14-15 16 <?php Ignore_user_abort (); Set_time_limit (0); $interval = 60*5; do{$url = "http://www.sina.com.cn/"; $ch = Curl_init =//Create a new Curl session curl_setopt ($ch, curlopt, $url);/Set the curl to be crawled curl_setopt ($ch, curlopt_returntransfer,1); Set the curl parameter to require the result to be saved to a string or a page (1 or True to save without output) curl_setopt ($ch, curlopt_timeout,2);/maximum continuation 2 seconds $result = curl_exec ($ch);//Execute Curl_close ($ch);/close sleep ($interval);//Rest 5 minutes}while (true)?>

I hope this article will help you with your PHP program design.

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.