如何重命名会话文件?
我想创建在线会员和访客柜台。我将会员会话保存在一个文件夹中,将访客会话保存在另一个文件夹中。我可以简单地通过计算会话文件来获得来宾的数量,但是对于成员,我想获得一个包含在线成员姓名的列表。
有什么方法可以将 PHP 中的会话文件名更改为用户名吗?
I want to create and online members and guests counter. I save the members sessions in a folder and the guests sessions in another folder. I can get the number of guest simply by counting the session files, but with the members I want to get a list with the name of the members online.
Is there any way to change the session file name to the user`s name in PHP ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须定义自己的会话处理程序。
有关详细信息,请参阅 session_set_save_handler。有一个代码示例,您可以轻松地适应您的需求。
You have to define your own session handler.
See session_set_save_handler for details. There's a code sample you can easily adapt to your needs.