diff --git a/reference/session/ini.xml b/reference/session/ini.xml index ea61b6c8dc..71f1923d3e 100644 --- a/reference/session/ini.xml +++ b/reference/session/ini.xml @@ -1,5 +1,5 @@ - +
&reftitle.runtime; &extension.runtime; @@ -146,7 +146,8 @@ session.save_handler defines the name of the handler which is used for storing and retrieving data associated with a session. Defaults to - files. + files. See also + session_set_save_handler. @@ -163,7 +164,8 @@ handler, this is the path where the files are created. Defaults to /tmp. If session.save_path's path depth is more than - 2, garbage collection will not be performed. + 2, garbage collection will not be performed. See also + session_set_save_path. @@ -193,6 +195,7 @@ session.name specifies the name of the session which is used as cookie name. It should only contain alphanumeric characters. Defaults to PHPSESSID. + See also session_name. @@ -211,21 +214,6 @@ - - - session.cookie_lifetime - integer - - - - session.cookie_lifetime specifies the lifetime of - the cookie in seconds which is sent to the browser. The value 0 - means "until the browser is closed." Defaults to - 0. - - - - session.serialize_handler @@ -358,6 +346,24 @@ + + + + session.cookie_lifetime + integer + + + + session.cookie_lifetime specifies the lifetime of + the cookie in seconds which is sent to the browser. The value 0 + means "until the browser is closed." Defaults to + 0.See also + session_get_cookie_params and + session_set_cookie_params. + + + + session.cookie_path @@ -366,7 +372,9 @@ session.cookie_path specifies path to set - in session_cookie. Defaults to /. + in session_cookie. Defaults to /.See also + session_get_cookie_params and + session_set_cookie_params. @@ -378,8 +386,27 @@ - session.cookie_domain specifies domain to - set in session_cookie. Default is none at all. + session.cookie_domain specifies the domain to + set in session_cookie. Default is none at all. See also + session_get_cookie_params and + session_set_cookie_params. + + + + + + + session.cookie_secure + boolean + + + + Wether cookies should only be sent over secure connections. + Defaults to off. + This setting was added in PHP + 4.0.4. See also + session_get_cookie_params and + session_set_cookie_params. @@ -394,7 +421,8 @@ session.cache_limiter specifies cache control method to use for session pages (none/nocache/private/private_no_expire/public). Defaults to - nocache. + nocache. See also + session_cache_limiter. @@ -409,7 +437,8 @@ session.cache_expire specifies time-to-live for cached session pages in minutes, this has no effect for - nocache limiter. Defaults to 180. + nocache limiter. Defaults to 180. See also + session_cache_expire.