最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

php - How to get partial output when script is executing? - Stack Overflow

programmeradmin1浏览0评论

Description:

I have a script which do multiple actions in longer time. In standard situation output from PHP script is sent after full execution of this script. User may be dissapointed if my script will load very long time without any response.

Problem to solve:

Let's say I have in this script a loop which will be working 10 times. After each one execution I want to get output to browser "Element X finished. Y time.". Value of X and Y will be changing.

Question:

Is there any way to reach that effect? Maybe with some kind of call from this script to new script which will sent data to browser throug AJAX.

Or is there any way to reach this effect only with PHP implementation?

EDIT:

I see that I have to clarify the matter. I want this information to appear dynamically on the page. I tried with output buffer functions already, and it still don't work as I need it. Output in browser is showing after full execute of script. Test code:

for ($i = 0; $i <= 10; $i++) {
    ob_start();
        
    echo "Output " . $i . "<br />";
        
    ob_flush(); //also only flush() etc.
    

    sleep(1);
}

Description:

I have a script which do multiple actions in longer time. In standard situation output from PHP script is sent after full execution of this script. User may be dissapointed if my script will load very long time without any response.

Problem to solve:

Let's say I have in this script a loop which will be working 10 times. After each one execution I want to get output to browser "Element X finished. Y time.". Value of X and Y will be changing.

Question:

Is there any way to reach that effect? Maybe with some kind of call from this script to new script which will sent data to browser throug AJAX.

Or is there any way to reach this effect only with PHP implementation?

EDIT:

I see that I have to clarify the matter. I want this information to appear dynamically on the page. I tried with output buffer functions already, and it still don't work as I need it. Output in browser is showing after full execute of script. Test code:

for ($i = 0; $i <= 10; $i++) {
    ob_start();
        
    echo "Output " . $i . "<br />";
        
    ob_flush(); //also only flush() etc.
    

    sleep(1);
}
Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Dec 21, 2013 at 10:43 XarvalusXarvalus 3,0212 gold badges22 silver badges30 bronze badges 4
  • Why not use print instead of returning the output at the end of the loop? – symlink Commented Dec 21, 2013 at 11:41
  • Print? I don't get it. Let's say I echo output to browser, pare to test code. – Xarvalus Commented Dec 21, 2013 at 12:15
  • possible duplicate of "Transfer-Encoding: chunked" header in PHP – Fad Commented Dec 21, 2013 at 12:53
  • @Xarvalus You hadn't added the test code at the time I mented. I see now you are echoing inside the loop. not concatenating and returning $output. You would still need to use flush(), of course. – symlink Commented Dec 21, 2013 at 19:37
Add a ment  | 

3 Answers 3

Reset to default 6

Yes, it should be achieveable with PHP alone. I remember seeing some code related to this when I was tracing through wordpress a while back, when it updates modules, it has to ftp, unzip, copy files, etc, which take a long time, and it likes to keep the user updated with what it's doing at the moment... after inspecting their send_message() function, and reading the PHP ob_flush() page, i think you want:

echo "stuff\n"; // adding a newline may be important here,
                // a lot of io routines use some variant of get_line()
ob_end_flush(); // to get php's internal buffers out into the operating system
flush(); // to tell the operating system to flush it's buffers to the user.

The people at the php manual also implied that it might help to explicitly set a header() with the mime-type and character set in it, so the browser would know that at the start and wouldn't wait for the entire binary object to bee available before attempting to decypher what sort of entity it had.

If that doesn't work you'd need to further modify your system php.ini to turn output buffering and pression off, at which point you may as well go look at an ajax solution.

An ajax solution would look something like:

Your script spits out some html/javascript to hit an ajax request, flushes all it's buffers, and stops concerning itself with the user, then starts some operation, or perhaps merely indicates that some large operation is to mence in a database somewhere for a cron job to pick up. The javascript on your page would have a timer loop to poll an ajax endpoint for status until the ajax replied that it was plete. The ajax endpoint would check on the status of your task by querying the database, or examining output files, etc, and spit all it knew out at once and terminate, letting the client decide when to ask it if things were done again. It is a much more involved and plicated endevour with more moving parts, but achieves a very nice end product for the user, if it's worth your time to craft.

Call flush(); just after your code outputs "Element X finished. Y time."

By default PHP will store all output in the output buffer until it's ready to send to the browser. flush() and ob_flush() force output to be sent.

Try calling in every loop ob_flush and ob_clean. The first one send the output buffer and the second one erase it.

发布评论

评论列表(0)

  1. 暂无评论