codeigniter会话的配置文件中有2个值我不完全理解,希望有人能启发我,谢谢。
# the number of SECONDS you want the session to last.
# by default sessions last 7200 seconds (two hours).
# Set to zero for no expiration.
$config['sess_expiration'] = 7200;
Q1) 即使用户仍在积极使用应用程序,应用程序是否会在时间(登录后 2 小时)结束时注销用户?
# how many seconds between CI refreshing Session Information
$config['sess_time_to_update'] = 300;
Q2)这个值会影响(Q1)的情景吗?