I have this shell program that I want to execute by php. The problem is that it can potentially take a long time, and as of that I need it to have real-time updating to the user's browser.

I read that I may need to use popen() to do that, but I am sort of (ok, I really am :P) a PHP noob and can't figure out how I may be able to do it.

Would appreciate any help!

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

there are two possible behaviors:

  1. Non Block, where you need to do something else between flushs (@GameBit show how to do it).

  2. With Block, where you wait until the called command finish, in this case look passthru function

link|improve this answer
How would I do it with passthru? Also, is there any disadvantage of using @GameBit's code if I don't need to do anything between flushes? – MegaEduX Dec 3 '11 at 21:18
You pass the same command as in the solution with popen, but the output from external program goes directly to output... If you know the difference between fopen and readfile, is practically the same thing, only with processes. First allow you read byte by byte and put into a variable, process the data, another simple read and write to output directly, without any action. – Paulo H. Dec 3 '11 at 21:25
Got it. Actually is easier to use. Obrigado! :D – MegaEduX Dec 3 '11 at 21:37
feedback
if( ($fp = popen("your command", "r")) ) {
    while( !feof($fp) ){
        echo fread($fp, 1024);
        flush(); // you have to flush buffer
    }
    fclose($fp);
}
link|improve this answer
Thanks for the fast and excellent answer, mate! – MegaEduX Dec 3 '11 at 20:50
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.