一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

利用 ob_end_clean ob_star usleep 实例定时器

时间:2010-05-12 编辑:简简单单 来源:一聚教程网

ignore_user_abort(true);
set_time_limit(0); 
function test(){
    echo "不要迷恋哥,哥只是个定时器!";
    echo date('h:i:s') . "
";
}
function just_do_it(){
  test();
  usleep(2000000);
}
ob_end_clean();
ob_start();
while(1){
    echo str_repeat(" ",1024);
     ob_flush();
     flush();
     just_do_it();
}

热门栏目