PHP Output Control Functions
EditRocket provides the following information on Output Control functions in the PHP source code builder.
void flush ( void ) - Flushes the output buffers of PHP and whatever backend PHP is using (CGI, a web server, etc). This effectively tries to push all the output so far to the user's browser.
void ob_clean ( void ) - This function discards the contents of the output buffer.
bool ob_end_clean ( void ) - This function discards the contents of the topmost output buffer and turns off this output buffering.
bool ob_end_flush ( void ) - This function will send the contents of the topmost output buffer (if any) and turn this output buffer off.
void ob_flush ( void ) - This function will send the contents of the output buffer (if any).
string ob_get_clean ( void ) - Gets the current buffer contents and delete current output buffer.
string ob_get_contents ( void ) - Gets the contents of the output buffer without clearing it.
string ob_get_flush ( void ) - ob_get_flush() flushes the output buffer, return it as a string and turns off output buffering.
int ob_get_length ( void ) - This will return the length of the contents in the output buffer.
int ob_get_level ( void ) - Returns the nesting level of the output buffering mechanism.
array ob_get_status ([ bool $full_status =FALSE ] ) - ob_get_status() returns status information on either the top level output buffer or all active output buffer levels if full_status is set to TRUE.
string ob_gzhandler ( string $buffer , int $mode ) -
void ob_implicit_flush ([ int $flag ] ) - ob_implicit_flush() will turn implicit flushing on or off.
array ob_list_handlers ( void ) - Lists all output handlers in use.
bool ob_start ([ callback $output_callback [, int $chunk_size [, bool $erase ]]] ) - This function will turn output buffering on. While output buffering is active no output is sent from the script (other than headers), instead the output is stored in an internal buffer.
bool output_add_rewrite_var ( string $name , string $value ) - This function adds another name/value pair to the URL rewrite mechanism.
bool output_reset_rewrite_vars ( void ) -