在mysql中获取浏览器会话
我如何在 mysql 中获取浏览器会话。任何想法提前致谢。
How can i get browser session in mysql. Any idea thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我如何在 mysql 中获取浏览器会话。任何想法提前致谢。
How can i get browser session in mysql. Any idea thanks in advance.
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
您无法通过 MySQL 获取会话信息,因为它只是一个数据库,不处理任何 HTTP 内容。
通过 PHP 获取您需要的信息,然后将其存储在 MySQL 中。
http://php.net/manual/en/function.session-id.php
You can't get the session information via MySQL as it is only a database and not handling any HTTP stuff.
Fetch the information you need via PHP and then store it from there in MySQL.
http://php.net/manual/en/function.session-id.php
浏览器会话的位置取决于您使用的框架以及您是否使用数据库来存储会话。你使用哪个框架?
The location of your browser session depends on the framework you use and also on the fact whether you use the db to store your session. Which framework do you use?