2

在我的页面中使用此代码时遇到问题:

带有过期会话的代码

<?php 
session_start();
if(!isset($_SESSION['clientmacs']) ) { 
    header('Location: index.php');
} else {
    if(time() - $_SESSION['timeLogin'] > 1800) {
        header('Location: include/logout.php');
    }
    $userclient = $_SESSION['clientmacs'];
?>
<html>
    HTML CODE
</html>
<?php
}
?>

但是,如果我使用此代码,问题就会消失,并且页面可以正常工作:

没有过期会话的代码

<?php 
session_start();
if(!isset($_SESSION['clientmacs'])) { 
    header('Location: index.php');
} else {
    $userclient = $_SESSION['client'];;
?>
<html>
    HTML CODE
</html>
<?php
}
?>

谷歌浏览器中的错误:

This webpage has a redirect loop

Http://localhost/mac/index.php The website has too many redirects. The incidence may be
resolved by deleting the cookies from this site or allowing third party cookies. If
that fails, the incidence may be related to a bug in the server configuration, not the
computer.
4

4 回答 4

4

您需要在执行重定向时重置 $_SESSION 超时值($_SESSION['timeLogin']),否则当客户端从重定向返回时,会话中的值是相同的并且将再次被重定向。

您可以通过以下方式解决它:

if(!isset($_SESSION['clientmacs']) ) {
    $_SESSION['clientmacs'] = ""; // add this line if not added somewhere else
    header('Location: index.php');
}

if(time() - $_SESSION['timeLogin'] > 1800) {
    $_SESSION['timeLogin'] = time(); // add this line
    header('Location: include/logout.php');
}

也许(取决于您的逻辑)最好清除整个会话,并session_destroy()在您执行重定向时通过正常流程()重新配置它。

于 2012-07-11T21:22:31.717 回答
2

这是您需要添加的内容

if(!isset($_SESSION['clientmacs'])) { 
    $_SESSION['clientmacs'] = 'something' // or it will redirect forever;
    header('Location: index.php');
}
于 2012-07-11T21:21:23.550 回答
1

您的注销正在重定向到您的索引,它将再次检查条件

if(time() - $_SESSION['timeLogin'] > 1800)

这将是真实的并将其发送回注销,依此类推。你需要改变你的 $_SESSION['timeLogin'] 否则你永远不会打破这个循环。

于 2012-07-11T21:22:01.570 回答
0

尝试计算 IF 语句之外的时间差。

例如

$difference = time() - $_SESSION['timeLogin'];

if($difference > 1800){
    //Do Something
}
于 2012-07-11T21:22:59.110 回答