欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php输出缓冲的小例子

程序员文章站 2022-04-03 18:56:46
...
  1. //开启缓冲

  2. ob_start();
  3. // Output stuff (probably not this simple, might be custom CMS functions...

  4. echo 'Print to the screen!!!';
  5. // Get value of buffering so far

  6. $getContent = ob_get_contents();
  7. // Stop buffering

  8. ob_end_clean();
  9. // Do stuff to $getContent as needed

  10. // Use it

  11. echo 'Now: ' . $getContent;
  12. ?>
复制代码