From cf5e583f59518d6ad587d616eeced863b1a19314 Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Tue, 27 May 2003 19:24:54 +0000 Subject: [PATCH] Initial documentation. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@128941 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../outcontrol/functions/ob-get-clean.xml | 75 +++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 reference/outcontrol/functions/ob-get-clean.xml diff --git a/reference/outcontrol/functions/ob-get-clean.xml b/reference/outcontrol/functions/ob-get-clean.xml new file mode 100644 index 0000000000..306326f675 --- /dev/null +++ b/reference/outcontrol/functions/ob-get-clean.xml @@ -0,0 +1,75 @@ + + + + + ob_get_clean + + Get current buffer contents and delete current output buffer + + + + Description + + stringob_get_clean + + + + This will return the contents of the output buffer and end output + buffering. If output buffering isn't active then &false; is returned. + ob_get_clean essentially executes both + ob_get_contents and + ob_end_clean. + + + + A simple <function>ob_get_clean</function> example + + +]]> + + + + + See also ob_start and + ob_get_contents. + + + + +