; where MODE is the octal representation of the mode. Note that this
##; does not overwrite the process's umask.; http://php.net/session.save- pathsession.save_path = "D:/www/qq/sese"After changing it, restart the server but the storage location is still the same as before. Why? There are still 2 sessions on it. I also tried to modify save_path but it didn’t work. Also, why can’t I press Enter to change the line in this input box? ? ? ? ? Another question is, will the session also store database connection information? I saw a file of more than 1M with a lot of stuff in it that seemed to be database information. What's going on? Kneel down and beg God for helpPHP中文网2017-07-20 09:17:52
$session_path=$this->root()."session_tmp"; if(!is_dir($session_path)){ mkdir($session_path,true,777); } session_save_path($session_path); session_start();