Copy code The code is as follows:
if(isset($_GET["se"])){
$se = $ _GET["se"];
}else{
return;
}
if(!empty($se)){
echo("receive se: ".$se.""); //The accepted session is $se
session_id($se); //Set the $se bit session_id
session_start() ; //Open session, be careful not to swap it with the previous step, the job is successful
echo("new session id: ".session_id()."");
echo $ _SESSION['h'];
}
http://www.bkjia.com/PHPjc/676880.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/676880.htmlTechArticleCopy the code The code is as follows: if(isset($_GET["se"])){ $se = $_GET ["se"]; }else{ return; } if(!empty($se)){ echo("receive se: ".$se."/br/br"); //The accepted session is $se session_id($s...