From e30bb85206f8cdcb9779bdb1b973115b90eef876 Mon Sep 17 00:00:00 2001 From: Friedhelm Betz Date: Sun, 17 Nov 2002 13:52:05 +0000 Subject: [PATCH] See also's to related ini-settings added. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@104532 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../functions/session-cache-limiter.xml | 19 ++++++++++++------- .../functions/session-get-cookie-params.xml | 10 +++++++++- reference/session/functions/session-id.xml | 6 ++++-- reference/session/functions/session-name.xml | 8 ++++++-- .../session/functions/session-save-path.xml | 8 +++++++- .../functions/session-set-cookie-params.xml | 10 +++++++++- .../functions/session-set-save-handler.xml | 6 +++++- 7 files changed, 52 insertions(+), 15 deletions(-) diff --git a/reference/session/functions/session-cache-limiter.xml b/reference/session/functions/session-cache-limiter.xml index b9db270b9e..1c8206a1d2 100644 --- a/reference/session/functions/session-cache-limiter.xml +++ b/reference/session/functions/session-cache-limiter.xml @@ -1,5 +1,5 @@ - + @@ -14,8 +14,8 @@ session_cache_limiter returns the name of the - current cache limiter. If cache_limiter is - specified, the name of the current cache limiter is changed to the + current cache limiter. If cache_limiter + is specified, the name of the current cache limiter is changed to the new value. @@ -41,17 +41,18 @@ The cache limiter is reset to the default value stored in - session.cache_limiter at request startup time. Thus, - you need to call session_cache_limiter for every + session.cache_limiter + at request startup time. Thus, you need to call + session_cache_limiter for every request (and before session_start is called). - <function>session_cache_limiter</function> examples + <function>session_cache_limiter</function> example "; ]]> + + See also the session.cache_limiter + configuration directive. + diff --git a/reference/session/functions/session-get-cookie-params.xml b/reference/session/functions/session-get-cookie-params.xml index 2261f9119d..f64ddd7edc 100644 --- a/reference/session/functions/session-get-cookie-params.xml +++ b/reference/session/functions/session-get-cookie-params.xml @@ -1,5 +1,5 @@ - + @@ -42,6 +42,14 @@ + + See also the configuration directives + session.cookie_lifetime, + session.cookie_path, + session.cookie_domain, + session.cookie_secure, and + session_set_cookie_params. + diff --git a/reference/session/functions/session-id.xml b/reference/session/functions/session-id.xml index fdadd2d006..4eabf8b125 100644 --- a/reference/session/functions/session-id.xml +++ b/reference/session/functions/session-id.xml @@ -1,5 +1,5 @@ - + @@ -32,7 +32,9 @@ linkend="ref.session">Session handling. - See also session_start. + See also session_start, + session_set_save_handler, and + session.save_handler. diff --git a/reference/session/functions/session-name.xml b/reference/session/functions/session-name.xml index fcf3726fc5..0919cdd047 100644 --- a/reference/session/functions/session-name.xml +++ b/reference/session/functions/session-name.xml @@ -1,5 +1,5 @@ - + @@ -33,7 +33,7 @@ "; ]]> + + See also the session.name + configuration directive. + diff --git a/reference/session/functions/session-save-path.xml b/reference/session/functions/session-save-path.xml index 14a7cabc0f..50798d5f7d 100644 --- a/reference/session/functions/session-save-path.xml +++ b/reference/session/functions/session-save-path.xml @@ -1,5 +1,5 @@ - + @@ -16,6 +16,8 @@ session_save_path returns the path of the current directory used to save session data. If path is specified, the path to which data is saved will be changed. + session_save_path needs to be called before + session_start for that purpose. On some operating systems, you may want to specify a path on a @@ -25,6 +27,10 @@ + + See also the session.save_path + configuration directive. + diff --git a/reference/session/functions/session-set-cookie-params.xml b/reference/session/functions/session-set-cookie-params.xml index 160aa7c3c5..b5e0976bde 100644 --- a/reference/session/functions/session-set-cookie-params.xml +++ b/reference/session/functions/session-set-cookie-params.xml @@ -1,5 +1,5 @@ - + @@ -27,6 +27,14 @@ 4.0.4. + + See also the configuration directives + session.cookie_lifetime, + session.cookie_path, + session.cookie_domain, + session.cookie_secure, and + session_get_cookie_params. + diff --git a/reference/session/functions/session-set-save-handler.xml b/reference/session/functions/session-set-save-handler.xml index d50e06be18..49a36751d8 100644 --- a/reference/session/functions/session-set-save-handler.xml +++ b/reference/session/functions/session-set-save-handler.xml @@ -1,5 +1,5 @@ - + @@ -123,6 +123,10 @@ session_start(); + + See also the session.save_handler + configuration directive. +