网站地图    收藏   

主页 > php专栏 > php应用 >

php中缓冲输出实例代码 - php高级应用

来源:自学PHP网    时间:2014-11-27 22:16 作者: 阅读:

[导读] ob_start([string output_callback])- 打开输出缓冲区所有的输出信息不在直接发送到浏览器,而是保存在输出缓冲区里面,可选得回调函数用于处理输出结果信息.ob_end_flush - 结束(发送)输出缓....

php中缓冲输出实例代码

ob_start([string output_callback])- 打开输出缓冲区

所有的输出信息不在直接发送到浏览器,而是保存在输出缓冲区里面,可选得回调函数用于处理输出结果信息.

ob_end_flush - 结束(发送)输出缓冲区的内容,关闭输出缓冲区,实例代码如下:

  1. */ 
  2.  
  3. ob_start();          //打开缓冲区 
  4. echo "hello world";        //输出内容 
  5. $out=ob_get_clean();       //获得缓冲区内容并且结束缓冲区 
  6. $out=strtolower($out);       //将字符转换为小写 
  7. var_dump($out);        //输出结果 
  8. // 
  9.  
  10. if(!function_exists('ob_clean'))      //判断函数是否被定义 
  11.   function ob_clean()       //定义函数 
  12.   { 
  13.     if(@ob_end_clean()) 
  14.     { 
  15.       return ob_start(); 
  16.     } 
  17.     trigger_error("ob_clean() failed to delete buffer.no buffer to delete.",e_user_notice); 
  18.     return false; 
  19.   } 
  20. // 
  21.  
  22. header('content-type: multipart/x-mixed-replace;boundary=endofsection');  //发送标头 
  23. print "n--endofsectionn";           //输出内容 
  24. $pmt=array("-","","|","/");           //定义数组 
  25. for($i=0;$i<10;$i++)            //通过循环进行操作 
  26. {//开源代码phpfensi.com 
  27.   sleep(1);             //暂停执行 
  28.   print "content-type: text/plainnn";         //输出内容 
  29.   print "part $it".$pmt[$i % 4];          //输出内容 
  30.   print "--endofsectionn";           //输出内容 
  31.   ob_flush();             //发送缓冲区数据 
  32.   flush();              //刷新输出缓冲 
  33. print "content-type: text/plainnn";         //输出内容 
  34. print "the endn";            //输出内容 
  35. print "--endofsection--n";           //输出内容

自学PHP网专注网站建设学习,PHP程序学习,平面设计学习,以及操作系统学习

京ICP备14009008号-1@版权所有www.zixuephp.com

网站声明:本站所有视频,教程都由网友上传,站长收集和分享给大家学习使用,如由牵扯版权问题请联系站长邮箱904561283@qq.com

添加评论