
15.01.2009, 11:06
|
|
Reservists Of Antichat - Level 6
Регистрация: 16.07.2005
Сообщений: 653
С нами:
10957346
Репутация:
2727
|
|
PHP код:
<?php
@ini_set('output_buffering',0);
@set_time_limit(0);
@ob_implicit_flush(1);
function myflush($timee)
{
if(ob_get_contents())
{
ob_flush();
ob_clean();
flush();
usleep($timee);
}
}
for($n = 0; ++$n <= 1111111;)
{
echo $n.'<br>';
myflush(1);
}
__________________
ПИУ-ПИУ...
|
|
|