diff options
author | Derick Rethans <derick@php.net> | 2001-11-30 10:48:38 +0000 |
---|---|---|
committer | Derick Rethans <derick@php.net> | 2001-11-30 10:48:38 +0000 |
commit | 9190271cefb74b308f1a7ca12fe5e9160d828dd7 (patch) | |
tree | 59f5094dbc011e26ebebfd9f1a69d28098937c15 /main/php_output.h | |
parent | 2afc5d6924e5991820150de1ab262f16e69d477c (diff) | |
download | php-git-9190271cefb74b308f1a7ca12fe5e9160d828dd7.tar.gz |
- Added ob_flush and ob_clean functions, which do not end the buffer like
ob_end_flush and ob_end_clean do.
@- Added ob_flush and ob_clean functions, which flush and clean an
@ output buffer without destroying the buffer. (Derick)
Diffstat (limited to 'main/php_output.h')
-rw-r--r-- | main/php_output.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/main/php_output.h b/main/php_output.h index f489532b0b..e8d1f2f7b0 100644 --- a/main/php_output.h +++ b/main/php_output.h @@ -43,6 +43,8 @@ PHPAPI int php_get_output_start_lineno(TSRMLS_D); PHPAPI void php_ob_set_internal_handler(php_output_handler_func_t internal_output_handler, uint buffer_size TSRMLS_DC); PHP_FUNCTION(ob_start); +PHP_FUNCTION(ob_flush); +PHP_FUNCTION(ob_clean); PHP_FUNCTION(ob_end_flush); PHP_FUNCTION(ob_end_clean); PHP_FUNCTION(ob_get_contents); |