How long is the lifecycle of a session? when the browser ends, its lifecycle also ends, but the file still exists in/tmp/(sess _???) 2. the session ID will be re-allocated when you re-open the browser next time. if you apply session_id () to bring back the previous ID, how long is the session lifecycle?
1. when the browser ends, its lifecycle also ends, but the file still exists in/tmp/(sess _???)
2. the sessionID will be re-allocated when you re-open the browser next time. if you apply session_id () to bring back the previous ID, The sess _???, Retrieve all the previously set parameters
3. you can modify the remaining time of the session file in php. ini.
Session. gc_maxlifetime = 1440; after this number of seconds, stored
Data will be seen as 'garbage' and
Cleaned up by the gc process
The default value is 1440 seconds, 24 minutes
Storage path title that the application session pays attention
Check the session settings in php. ini.
[Session]
Session. save_handler = files; handler used to store/retrieve data
Session. save_path =/tmp; argument passed to save_handler
In the case of files, this is
Path where data files are stored
By default, it is stored in the/tmp Directory. this directory may not be true !!! It is best to change to your php installation path, such as c:/php
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.
A Free Trial That Lets You Build Big!
Start building with 50+ products and up to 12 months usage for Elastic Compute Service