Implementation analysis of PHPset_time_limit (0) persistent connection

Source: Internet
Author: User
Every time we access the PHP script, we get the returned results after all the PHP scripts are executed. If we need a script to run continuously, we need to use the php persistent connection method to achieve the running goal. Every PHP script limits the execution time, so we need to use set_time_limit to set the execution time of a script to an infinite length, and then use flush () and ob_flush () to clear the server buffer, output the return value of the script at any time.

As shown in the following script:

The code is as follows:


Header ("Content-Type: text/plain ");
Set_time_limit (0 );

$ InfoString = "Hello World". "\ n ";
While (isset ($ infoString ))
{
Echo $ infoString;
Flush ();
Ob_flush ();
Sleep (5 );
}
?>


After Execution, every five seconds, we will get a line of Hello World. if we do not press the stop button, the browser will continue loading one line without stopping.

Through this method, we can complete many functions, such as robot crawlers and instant message boards.

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.