|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-02-20 12:01 UTC] kewl at compfort dot pl
[2002-02-21 04:55 UTC] kewl at compfort dot pl
[2002-02-24 05:55 UTC] yohgaki@php.net
[2002-02-24 11:43 UTC] nohn@php.net
[2002-02-24 11:44 UTC] nohn@php.net
[2002-02-25 03:13 UTC] kewl at compfort dot pl
[2002-04-18 15:47 UTC] norny at yahoo dot com
[2002-08-30 13:58 UTC] iliaa@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Nov 02 17:00:02 2025 UTC |
here is the code i ran with command-line version of php: <? $asd=0; do { printf("asd: %d\n",$asd); flush(); sleep(1); $asd++;}while ($asd<5); ?> if it is executed on linux, it works as expected, that is it displays asd every second. on windows though, i only see the whole output after 5 seconds.