HTTP和HTTPS跨域共享php session方法
程序员文章站
2022-06-01 09:43:08
...
HTTP、HTTPS协议下跨域解决php session共享的办法,也许不是最好的,但是比较实用。
如下是具体的解决方案。
$currentSessionID=session_id();session_id($currentSessionID);
简单示例代码:
(HTTP)
session_start();
$currentSessionID=session_id();
$_SESSION['username']='scutephp';
echo '点击这里跳转到HTTPS协议下';
(HTTPS)
$currentSessionID=$_GET['session'];
session_id($currentSessionID);
session_start();
if(!empty($_SESSION['username'])){
echo $_SESSION['username'];
}else{
echo 'Session did not work.';
}
上一篇: WampServer端口的修改
下一篇: Oracle数据库中的函数,包和触发器
推荐阅读