update page now

Voting

: six minus six?
(Example: nine)

The Note You're Voting On

lko at netuse dot de
18 years ago
if you are using exec function, and have problems with a output > 1000 lines
you should use  

<?php
                stream_set_blocking($stream, true);
                while($line = fgets($stream)) {
                        flush();
                        echo $line."<br />";
                }
?>

except

<?php
                stream_set_blocking($stream, true);
               echo stream_get_contents($stream);
?>

<< Back to user notes page

To Top