ob_get_clean
ob_get_clean
(PHP 4 >= 4.3.0, PHP 5, PHP 7)
ob_get_clean — Get current buffer contents and delete current output buffer
Description
string ob_get_clean ( void )
Gets the current buffer contents and delete current output buffer.
ob
_
get
_
clean()
essentially executes both ob
_
get
_
contents() and ob
_
end_
clean()
.
The output buffer must be started by ob
_
start() with PHP_
OUTPUT_
HANDLER_
CLEANABLE flag. Otherwise ob
_
get
_
clean()
will not work.
Return Values
Returns the contents of the output buffer and end output buffering. If output buffering isn't active then FALSE
is returned.
Examples
Example #1 A simple ob
_
get
_
clean() example
<?php
ob_start(
echo "Hello World";
$out = ob_get_clean(
$out = strtolower($out
var_dump($out
?>
The above example will output:
string(11) "hello world"
See Also
- ob_get_contents() - Return the contents of the output buffer
- ob_start() - Turn on output buffering
← ob_flush
ob_get_contents →
© 1997–2017 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.