You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
321 B

--TEST--
Test return type and value, as well as basic behaviour, of ob_get_clean()
--FILE--
<?php
/*
* proto bool ob_get_clean(void)
* Function is implemented in main/output.c
*/
var_dump(ob_get_clean());
ob_start();
echo "Hello World";
var_dump(ob_get_clean());
?>
--EXPECTF--
bool(false)
string(11) "Hello World"