출력 버퍼 처리 기능의 기능은 콘텐츠를 처리하기 위해 임시로 저장 공간에 배치되는 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('APP_ROOT', dirname(FILE)); $file = '/templates/html/error_config.html'; 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!