Session_set_save_handler: is the number of sessions generated by this function valid only once? Solution
Source: Internet
Author: User
Session_set_save_handler: is the number of sessions generated by this function valid only once? I used session_set_save_handler to store session data. I found that the generated session is valid only once and the page is refreshed again. other normal assignment sessions are normal. how can I prevent the session_set_save_handler function from generating only a few sessions? valid once?
I use session_set_save_handler to store session data.
The generated session is valid only once.
Refresh the page and the page disappears.
Other normal sessions are normal.
Is there any way to prevent the session generated in this way from disappearing?
------ Solution --------------------
Hope to help you
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.
Note: Before using this function, configure the php. ini file and session. save_hadler = user. otherwise, session_set_save_handler () will not take effect.
In addition, according to my tests, if you want this session to be used across pages, you must add your custom function and session_set_save_handler to each session script file. therefore, the best way is to make a separate file and include it in every session script.
The following example provides a basic session persistence method, similar to the default files method.
If you want to use a database, this is also easy to implement.
Example 1. session_set_save_handler () example
Function open ($ save_path, $ session_name ){
Global $ sess_save_path, $ sess_session_name;
/*************************************** ******
* WARNING-You will need to implement some *
* Sort of garbage collection routine here .*
**************************************** *****/
Function gc ($ maxlifetime ){
Return true;
}
// Proceed to use sessions normally
// Now you can use the session as usual.
?>
------ Solution --------------------
At least view the code snippet
------ Solution --------------------
What is the validity period of the session in php. ini?
Session. cache_expire = 180
Does your page contain session_destroy (), but session_start () is not displayed ()?
------ Solution --------------------
"Other normal assignment sessions are normal." What does this mean? are there many ways to assign values to your sessions?
The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion;
products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the
content of the page makes you feel confusing, please write us an email, we will handle the problem
within 5 days after receiving your email.
If you find any instances of plagiarism from the community, please send an email to:
info-contact@alibabacloud.com
and provide relevant evidence. A staff member will contact you within 5 working days.