mirror of
https://github.com/php/php-src.git
synced 2024-11-25 19:05:31 +08:00
11d24c1593
requests--let's see what I can dig out of the bugtracker for NEWS-- and while crossing the road: * implemented new zlib API * fixed up ext/tidy (what was "s&" in zend_parse_parameters() supposed to do?) Thanks to Jani and Felipe for pioneering.
48 lines
923 B
PHP
48 lines
923 B
PHP
--TEST--
|
|
Test ob_get_level() function : basic functionality
|
|
--FILE--
|
|
<?php
|
|
/* Prototype : proto int ob_get_level(void)
|
|
* Description: Return the nesting level of the output buffer
|
|
* Source code: main/output.c
|
|
* Alias to functions:
|
|
*/
|
|
|
|
echo "*** Testing ob_get_level() : basic functionality ***\n";
|
|
|
|
// Zero arguments
|
|
echo "\n-- Testing ob_get_level() function with Zero arguments --\n";
|
|
var_dump(ob_get_level());
|
|
|
|
ob_start();
|
|
var_dump(ob_get_level());
|
|
|
|
ob_start();
|
|
var_dump(ob_get_level());
|
|
|
|
ob_end_flush();
|
|
var_dump(ob_get_level());
|
|
|
|
ob_end_flush();
|
|
var_dump(ob_get_level());
|
|
|
|
ob_end_flush();
|
|
var_dump(ob_get_level());
|
|
|
|
|
|
echo "Done";
|
|
?>
|
|
--EXPECTF--
|
|
*** Testing ob_get_level() : basic functionality ***
|
|
|
|
-- Testing ob_get_level() function with Zero arguments --
|
|
int(0)
|
|
int(1)
|
|
int(2)
|
|
int(1)
|
|
int(0)
|
|
|
|
Notice: ob_end_flush(): failed to delete and flush buffer. No buffer to delete or flush in %s on line 26
|
|
int(0)
|
|
Done
|