php及时输出

ob_end_flush();//关闭缓存


        set_time_limit(0);

        for($i=0;$i<10;$i++){

            echo "Now Index is :". $i,'<br/>';

            ob_flush();

            flush();

            sleep(1);

        }

        exit;


你可能感兴趣的:(php及时输出)