美文网首页
php及时输出

php及时输出

作者: 荒凉的岁月 | 来源:发表于2020-02-01 19:41 被阅读0次
    <?php
    error_reporting(0);
    header("Content-type:text/html;charset=utf-8");
    //ob_end_clean();//清除并关闭缓冲,输出到浏览器之前使用这个函数。
    //ob_implicit_flush(1);//控制隐式缓冲泻出,默认off,打开时,对每个 print/echo 或者输出命令的结果都发送到浏览器。
    for ( $i = 0 ; $i < 10 ; $i++){
    
        echo str_repeat ( " " , 1024 ) ;//浏览器最低接收字节量
        echo $i;
        // ob_flush();//使用此函数时需关闭ob_end_clean()和ob_implicit_flush(1)
        // flush();//使用此函数时需关闭ob_end_clean()和ob_implicit_flush(1)
        sleep(1);
    }
    ?>
    

    相关文章

      网友评论

          本文标题:php及时输出

          本文链接:https://www.haomeiwen.com/subject/ttxyactx.html