Note that this function pulls the session cookie parameters from the php ini file unless otherwise set with session_set_cookie_params(). In other words it will not check the client cookie's parameters if one exists.
![]() | session_get_cookie_paramsDescriptionarray session_get_cookie_params ( void )The session_get_cookie_params() function returns an array with the current session cookie information, the array contains the following items:
See also the configuration directives session.cookie_lifetime, session.cookie_path, session.cookie_domain, session.cookie_secure, and session_set_cookie_params(). ![]()
scott at firefallpro dot com
01-Dec-2005 06:30
Note that this function pulls the session cookie parameters from the php ini file unless otherwise set with session_set_cookie_params(). In other words it will not check the client cookie's parameters if one exists.
powerlord at spamless dot vgmusic dot com
19-Nov-2002 03:35
This function is quite handy when it comes to expiring session cookies... since Session cookies don't automatically get destroyed (see the session_destroy page). | ![]() |