>  기사  >  백엔드 개발  >  PHP: 출력 버퍼 처리 기능 사용법 요약

PHP: 출력 버퍼 처리 기능 사용법 요약

伊谢尔伦
伊谢尔伦원래의
2017-06-24 11:31:411423검색

출력 버퍼 처리 기능의 기능은 콘텐츠를 처리하기 위해 임시로 저장 공간에 배치되는 C 스택과 다소 유사합니다.

출력 버퍼 함수는 다음과 같습니다:

  • ob_start() - 출력 제어 버퍼 열기

  • ob_get_length() - 출력 버퍼의 길이 반환

  • ob_get_level() - 출력 버퍼의 중첩 레벨을 반환

  • ob_get_status() - 출력 버퍼의 상태를 반환합니다. (배열 형태로 반환되며, 기본적으로 최상위 레벨이 반환되며, 모두 반환됩니다.) 매개변수가 true인 경우)

  • ob_get_contents() - 출력 버퍼의 내용을 반환합니다.

  • ob_get_clean() - 현재 출력 버퍼를 문자열 형식으로 반환하고 출력 버퍼를 닫습니다.

  • ob_end_clean() - 비우기(지우기) ob_get_flush() - 출력 버퍼 내용을 문자열로 반환하고 버퍼를 닫습니다.

  • ob_end_flush

    () - 출력 버퍼 내용을 플러시(전송)합니다. 버퍼링
  • 예는 다음과 같습니다.

    <?php  
     define(&#39;APP_ROOT&#39;, dirname(FILE));
     $file = &#39;/templates/html/error_config.html&#39;;
     ob_start(); 
     include(APP_ROOT.$file);
     ob_end_flush();
       //$contents = ob_get_contents();  这样可以将输出保存,可以作进一步处理
      //ob_end_clean();
       //echo $contents;
     ?>
    rrree
  • 출력 결과는 다음과 같습니다.
<?php echo"<?xml version=\"1.0\" encoding=\"utf-8\">"; ?>
 <!DOCTYPE html PUBLIC "-//W3C//DTD  XHTML 1.0  Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
 <html xmlns="http://www.w3.org/1999/xhtml">
 <head>
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
     <meta http-equiv="Content-Script-Type" content="text/javascript" />
     <meta http-equiv="Content-Style-Type" content="text/css" />
     <title>Error</title>
 </head>
 <body onload="doRedirect()">
 <h1>Error</h1>
 <div style="position:absolute;top:150px;text-align:center;width:95%;">
     <p style="margin:12pt;"><strong>config.php</strong> does not exist or is not readable by the webserver in the directory.</p>
     <p style="margin:12pt;"><?php echo CommonFunctions::$PSI_VERSION_STRING ?></p>
 </div>
 </body>
 </html>

위 내용은 PHP: 출력 버퍼 처리 기능 사용법 요약의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.