diff options
author | Sascha Schumann <sas@php.net> | 2002-05-04 18:33:13 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2002-05-04 18:33:13 +0000 |
commit | 9743860d35c17da9b36c104c16cb06122d6cf6f6 (patch) | |
tree | 06d63c81ef2ada41067498b05d5174de4d21d9eb /main/php_output.h | |
parent | ebfff2df7e350557c72424311e94ca1984184a40 (diff) | |
download | php-git-9743860d35c17da9b36c104c16cb06122d6cf6f6.tar.gz |
simplify handling of variables by maintaining two strings which
are simply appended instead of traversing the hash table on each
URL/form.
also fix an unconditional segfault in rshutdown due to efree'ing
a static char *.
remove remove_var, add reset_vars. move the function declarations
into the right header file.
Diffstat (limited to 'main/php_output.h')
-rw-r--r-- | main/php_output.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/main/php_output.h b/main/php_output.h index f1a8069ce1..48f9bde31d 100644 --- a/main/php_output.h +++ b/main/php_output.h @@ -94,5 +94,8 @@ ZEND_API extern php_output_globals output_globals; #define PHP_OUTPUT_HANDLER_INTERNAL 0 #define PHP_OUTPUT_HANDLER_USER 1 +PHP_FUNCTION(output_add_rewrite_var); +PHP_FUNCTION(output_reset_rewrite_vars); + #endif /* PHP_OUTPUT_H */ |