为什么包含文件中的“会话控制”不起作用?

时间:2012-06-03 17:55:23

标签: php session include

我希望控制每个文件中包含的header.php中的会话,而不是在所有文件中逐个控制会话。所以,最重要的是header.php我编码:

if($session->is_logged_in()) {//is_logged_in is a function controlling session
   echo "logged";
} else {
    echo "not logged";
}  

index.php这里:

<?php define('REALLY_INCLUDED', true);?>
<?php require_once  $_SERVER['DOCUMENT_ROOT'].'/includes/initialize.php'; ?>
<?php include_layout_template("index_header.php"); ?>
<?php include_layout_template("sidebar.php"); ?>
<?php include_layout_template("index_content.php"); ?>
<?php include_layout_template("footer.php");?>  

index_header.php在这里:

<?php require_once  $_SERVER['DOCUMENT_ROOT'].'/includes/initialize.php'; ?>
<?php header("Content-Type: text/html; charset=latin5"); ?>
<?php
if(!defined('REALLY_INCLUDED') || !REALLY_INCLUDED) {
    exit();
}
if($session->is_logged_in()) {
 echo "logged in";
} else {
echo "logged not!";
}

?>
<html>
Here is html code
</html>  

session.php的一些部分:

private $logged_in=false;
function __construct() {
session_start();
$this->check_login();
}

public function is_logged_in() {
return $this->logged_in;
}

private function check_login() {
if(isset($_SESSION['user_id'])) {
  $this->user_id = $_SESSION['user_id'];
  $this->logged_in = true;
} else {
  unset($this->user_id);
  $this->logged_in = false;
  }
}

问题是,当我点击URL index.php时,浏览器中似乎没有任何内容。 if,我删除is_logged_in()函数,它显示页面。如果我将is_logged_in()函数放入index.php并从index_header.php中删除,它也会显示页面。 İf,我点击它显示的网址index_header.php。有趣的是,它不包括index_header.php这个函数。我的功能没有问题。

0 个答案:

没有答案