Home  >  Article  >  php教程  >  php利用flush() ob_flush() 实现字符串逐条输出

php利用flush() ob_flush() 实现字符串逐条输出

WBOY
WBOYOriginal
2016-06-13 10:01:031156browse

以前都是利用js来实例聊天室或无刷新输出,其实php了可以单独实现哦,在php中我们利用flush() ob_flush()可以了。

ob_end_clean(); //清除输出缓存并且关闭缓存
echo str_pad(' ',256);//输出256字节空格(在ie浏览器下要接受大于256个字节才会输出显示

 代码如下 复制代码
for($i=0;$i   
echo '
abc___'.$i;
flush();
ob_flush();
sleep(1);
}

该方法在opera下不可用,因为opera浏览器在不遇到一个html标签之前是不输出内容的

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn