Maison  >  Article  >  développement back-end  >  php输出缓冲的小例子

php输出缓冲的小例子

WBOY
WBOYoriginal
2016-07-25 08:56:031073parcourir
  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. ?>
复制代码


Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn