欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

HTTP和HTTPS跨域共享php session方法

程序员文章站 2024-04-04 13:49:41
...
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.';

}

相关标签: Http