我希望控制每个文件中包含的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这个函数。我的功能没有问题。