为什么我的 PHP $_SESSION[sessionvar] 在 iPhone 上的页面之间丢失?
我正在使用此处提供的 php 登录表单的基本框架: http://www.html-form-guide.com/php-form/php-login-form.html
当我在 Mac 或 PC 上时它效果很好。当从iPhone登录时,$_SESSION数组为空,因此登录用户的身份丢失,系统不会重定向到login.php。
如何防止 $_SESSION 数组被删除?
I'm using the basic framework of the a php login form provided here: http://www.html-form-guide.com/php-form/php-login-form.html
It works great when I am on a Mac or PC. When login from an iPhone, the $_SESSION array is empty, so the identify of the logged in user is lost, and the system wasn't to redirect to login.php.
How can I prevent the $_SESSION array from getting wiped out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的 iPhone 浏览器可能没有启用 cookie。由于安全原因,PHP 会话默认使用 cookie,但是还有第二种方法,使用 还有 GET 参数,通常称为 SID。利用该 get 参数,您应该可以适应无 cookie 的浏览器。
Probably your iPhone browser does not have cookies enabled. Due to security reasons, the PHP sessions default to cookie usage, however there is a second way using a GET parameter as well, often called SID. Make use of that get parameter and you should be fine for cookie-less browsers.