diff options
author | Yasuo Ohgaki <yohgaki@php.net> | 2002-10-03 01:36:44 +0000 |
---|---|---|
committer | Yasuo Ohgaki <yohgaki@php.net> | 2002-10-03 01:36:44 +0000 |
commit | bd177ce7c1b4a9d73fc38c4f41e6001085ad882d (patch) | |
tree | cfec444b1d1791f7d30244c7dda0c952d79df759 /ext/standard/basic_functions.c | |
parent | 01830c0d272d321752a60e81245f8098d0d279b3 (diff) | |
download | php-git-bd177ce7c1b4a9d73fc38c4f41e6001085ad882d.tar.gz |
Added ob_get_clean() and ob_get_flush().
Someone requested this feature before.
@ Added ob_get_clean() and og_get_flush(). (Yasuo)
Diffstat (limited to 'ext/standard/basic_functions.c')
-rw-r--r-- | ext/standard/basic_functions.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 5512154e84..28b7203200 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -750,6 +750,8 @@ function_entry basic_functions[] = { PHP_FE(ob_clean, NULL) PHP_FE(ob_end_flush, NULL) PHP_FE(ob_end_clean, NULL) + PHP_FE(ob_get_flush, NULL) + PHP_FE(ob_get_clean, NULL) PHP_FE(ob_get_length, NULL) PHP_FE(ob_get_level, NULL) PHP_FE(ob_get_status, NULL) |