开发者

How to rename a session file?

开发者 https://www.devze.com 2023-03-14 04:36 出处:网络
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

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 ?


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.

0

精彩评论

暂无评论...
验证码 换一张
取 消