ホームページ >php教程 >php手册 >PHP session destroyed / lost after header

PHP session destroyed / lost after header

WBOY
WBOYオリジナル
2016-06-06 19:57:161026ブラウズ

在header重定向后,注册的session居然消失了?! 找到解决办法: After the Header redirect you need to exit the PHP script: header(Location: /); exit(); 参考:http://stackoverflow.com/questions/2037316/php-session-destroyed-lost-after-header

在header重定向后,注册的session居然消失了?!

找到解决办法:

After the Header redirect you need to exit the PHP script: 

header("Location: /"); 
exit();

参考:http://stackoverflow.com/questions/2037316/php-session-destroyed-lost-after-header

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。