PHP 내장 출력 버퍼 코드 인 스 턴 스

PHP 의 출력 캐 시 는 끼 워 넣 을 수 있 습 니 다.ob 로get_level()은 내장 단 계 를 출력 할 수 있 습 니 다.
테스트 결과 cli 와 브 라 우 저 에서 출력 결과 가 다 릅 니 다(PHP 5.4).

매 뉴 얼 설명 은 다음 과 같다.
ob_get_level() will always return 0 inside a destructor.
This happens because the garbage collection for output buffers has already done before the destructor is called
정확 한 출력 을 원 하 는 것 도 간단 하 다.

ob_end_clean();
echo ob_get_level(); //0
본론 으로 돌아 가기:

ob_end_clean();
 
ob_start();
echo 'php1';//
$a = ob_get_level();
$b = ob_get_contents();// ,
ob_clean();
 
ob_start();
echo 'php2';//
$c = ob_get_level();
$d = ob_get_contents();// ,
ob_clean();
 
ob_start();
echo 'php3';//
$e = ob_get_level();
$f = ob_get_contents();// ,
ob_clean();
 
echo 'level:'.$a.',ouput:'.$b.'<br>';
echo 'level:'.$c.',ouput:'.$d.'<br>';
echo 'level:'.$e.',ouput:'.$f.'<br>';
결 과 는 다음 과 같다.

level:1,ouput:php1
level:2,ouput:php2
level:3,ouput:php3
물론,어떤 단계 의 버퍼 를 닫 으 면 다음 과 같은 테스트 가 있 습 니 다.

ob_end_clean();
 
ob_start();
echo 'php1';
$a = ob_get_level();
$b = ob_get_contents();
ob_clean();
 
ob_start();
echo 'php2';
$c = ob_get_level();
$d = ob_get_contents();
ob_end_clean();  //
 
ob_start();
echo 'php3';
$e = ob_get_level();
$f = ob_get_contents();
ob_clean();
 
echo 'level:'.$a.',ouput:'.$b.'<br>';
echo 'level:'.$c.',ouput:'.$d.'<br>';
echo 'level:'.$e.',ouput:'.$f.'<br>';
결 과 는 다음 과 같다.

level:1,ouput:php1
level:2,ouput:php2
level:2,ouput:php3

좋은 웹페이지 즐겨찾기