diff options
author | Sascha Schumann <sas@php.net> | 2000-10-11 19:47:15 +0000 |
---|---|---|
committer | Sascha Schumann <sas@php.net> | 2000-10-11 19:47:15 +0000 |
commit | d2d5320ee8fac3a3bb56deda264e811f7c7e3106 (patch) | |
tree | 3038664287f815d56eb012e8ba383ca5d4290646 /ext/session/php_session.h | |
parent | 0fd6a7ed18fc23c3b90175da5167ed8d6af9e3aa (diff) | |
download | php-git-d2d5320ee8fac3a3bb56deda264e811f7c7e3106.tar.gz |
Add session_write_close(). This is primarily intended to enable
script writers to release the lock associated with the session lock
before the request finishes.
You can pass arrays now to session_set_save_handler(), so that the handlers
can be located in an object for better abstraction.
Diffstat (limited to 'ext/session/php_session.h')
-rw-r--r-- | ext/session/php_session.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/session/php_session.h b/ext/session/php_session.h index e489be780c..5a361a32f4 100644 --- a/ext/session/php_session.h +++ b/ext/session/php_session.h @@ -115,6 +115,7 @@ PHP_FUNCTION(session_set_save_handler); PHP_FUNCTION(session_cache_limiter); PHP_FUNCTION(session_set_cookie_params); PHP_FUNCTION(session_get_cookie_params); +PHP_FUNCTION(session_write_close); #ifdef ZTS #define PSLS_D php_ps_globals *ps_globals |