// ******************************** Session_get_cookie_params (PHP4 $ #@ 62; 4.0RC2) arraysession_get_cookie_params (void); returns an array that records the cookie information of the current session. Including: lifetime-coo
//********************************
Session_get_cookie_params (PHP4 $ # @ 62; = 4.0RC2)
Array session_get_cookie_params (void );
Returns an array that records the cookie information of the current session.
Include:
"Lifetime"-the lifetime of the cookie.
"Path"-cookie storage path.
"Domain"-cookie domain.
//*******************************
Session_set_cookie_params (PHP4 $ # @ 62; = 4.0b4)
Void session_set_cookie_params (int lifetime [, string path [, string domain])
This function only applies to the current script file.
//*******************************
The function to be introduced below should be very useful to everyone. are you interested in customizing a session to save without cookies? This function can achieve your assumption.
Let me think about the benefits of using cookies? At least, you don't have to worry about whether the client's cookie function is enabled, right.
Session_set_save_handler (PHP4 $ # @ 62; = 4.0b4)
Void session_set_save_handler (string open, string close, string read, string write, string destroy, string gc)
This function can define user-level session storage functions (open, close, write, etc ).
For example, this function is useful when we want to save the session in a local database.