开发者

Is there a way to make PHP progressively output as the script executes?

开发者 https://www.devze.com 2022-12-24 10:15 出处:网络
So I\'m writing a disposable script for 开发者_开发百科my own personal single use and I want to be able see how the process is going. Basically I\'m processing a couple of thousand media releases and

So I'm writing a disposable script for 开发者_开发百科my own personal single use and I want to be able see how the process is going. Basically I'm processing a couple of thousand media releases and sending them to our new CMS.

So I don't hammer the CMS, I'm making the script sleep for a couple of seconds after every 5 requests.

I would like - as the script is executing - to be able to see my echos telling me the script is going to sleep or that the last transaction with the webservice was successful.

Is this possible in PHP?

Thanks for your help!

Iain


Use ob_flush to send any data in the buffer. So you can execute some commands, flush the output, and then sleep for a bit before processing more commands.

I do notice that on particularly long scripts, PHP seems to start sending what it's got in the buffer even though the script hasn't finished executing

By default, PHP will never echo anything until the entire script finishes executing. That's just your browser trying to output way too much data at once, or you have something that's causing it to flush somewhere.


Here's a PHP package which wraps it up :

https://packagist.org/packages/coderofsalvation/browser-stream

   BrowserStream::enable();
    BrowserStream::put("loading");

    for( $i = 0; $i < 10; $i++ ){
        BrowserStream::put(".");
        sleep(1);
    }


You can try using flush and look at the other output control functions, but they might not be any use. Your web server software may buffer the response regardless.


You may want to explore the flush commands http://php.net/manual/en/function.flush.php

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号