php 实时输出

<?php
header("Content-type:text/html;charset=utf-8");

#设置执行时间不限时 
set_time_limit(0);

#清除并关闭缓冲,输出到浏览器之前使用这个函数。
ob_end_clean();

#控制隐式缓冲泻出,默认off,打开时,对每个 print/echo 或者输出命令的结果都发送到浏览器。
ob_implicit_flush(1);

//ob_end_clean();
//ob_implicit_flush(1);
while(1){
    echo 'hello sjolzy.cn<br />';
    sleep(1);
    //ob_end_flush();
    //ob_flush();
    //flush();
}

 

posted on 2015-07-02 17:04  darkness_1  阅读(231)  评论(0编辑  收藏  举报

导航