Buffer problem for help

Source: Internet
Author: User
The OB in PHP is off, and I want to ask under the circumstances of the shutdown, an echo is passed through the PHP buffer to the system server buffer to the browser buffer. What if the process is turned on? Or did I get the wrong idea?

Reply content:

The OB in PHP is off, and I want to ask under the circumstances of the shutdown, an echo is passed through the PHP buffer to the system server buffer to the browser buffer. What if the process is turned on? Or did I get the wrong idea?

obRefers to the output control, does not mean the buffer, when opened ob , you can control php when the output of the content sent to the browser.
Give you an example:

Not open ob : echo '1' send '1' to browser echo '2'send '2' to browser

Open ob : echo '1' do nothing echo '2' do nothing flushsend '12' to browser

Open OB, the following program will have an output effect


  
   ";    //输出内容    echo str_pad('',1025);    //输出生成的字符串,如果字符串过短不会有效果。    ob_flush();       //发送缓冲区数据    flush();        //刷新缓冲区    sleep(1);       //暂停1秒}echo "done.";       //输出操作完成标记ob_end_flush();       //发送缓冲区数据,并关闭缓冲区?>
  • 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.