本文介绍了相同的域,不同的文件夹 PHP 会话的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想根据用户所在的文件夹设置不同的会话 ID.
I want to set a different session ID depending on what folder a user is in.
例如,我有域 https://example.com,其中包含文件夹/app1、/app2、等,然后每个应用程序文件夹中的多个文件.我想设置一个会话 ID 用于 app1 中的所有文件,并设置一个不同的会话 ID 用于 app2.
For example, I have the domain https://example.com which has the folders /app1, /app2, etc. and then multiple files inside each app folder. I would like to set one session ID to be used with all files in app1 and a different session ID to be used in app2.
这能做到吗?
推荐答案
在会话 cookie 中使用 session_set_cookie_params
.当然在 session_start
之前.
Set the path in the session cookie with session_set_cookie_params
. Before session_start
of course.
这篇关于相同的域,不同的文件夹 PHP 会话的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!