php的session丢掉

WBOY
Release: 2016-06-13 12:59:33
Original
895 people have browsed it

php的session丢失
我在一个页面设置了session,也能把设置好的session打印出来。
但是跳转到另外一个页面,就没了。
经检查,我发现session.save_path = "d:\host\php\Temp"文件夹下始终什么都没有。我设置了everyone的完全控制权限了,请问还可能是别的什么原因吗?



比如下面:
《1.php》
session_start();
$_SESSION['aaa']="afdsfd";
var_dump($_SESSION); 
?>

《2.php》
session_start();
var_dump($_SESSION); 
?>


1.php能打印出来,但是跳转到2.php就什么都没了
------解决方案--------------------
php.ini改对地方了吗?
你先用
phpinfo();
?>
看下你的PHP.INI的位置,再修改

不一定是网上所说的c:\windows\php.ini那样的

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template