gpt4 book ai didi

php - session 和 iframe

转载 作者:行者123 更新时间:2023-11-28 12:45:14 26 4
gpt4 key购买 nike

我有一个带有 iframe 的网站。Booth、站点和 iframe 中的站点正在检查 $_SESSION["login"]。因此,如果 session 过期,用户将被注销。

问题:当用户在网站上停留一段时间并且 session 过期时,登录页面将出现在 iframe 中。(例如,他点击了 target="iframe"的链接)我希望登录页面出现在父级中。

可能吗?

最佳答案

试试这个:

<?php 
if(!isset($_SESSION["login"]))
{
?>
<script>
if(self.location.href != top.location.href){
top.location = '/login.php';
}
</script>
<?php
}
?>

关于php - session 和 iframe,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8397779/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com