我有一个管理类:
<?php
Class Admin extends Controller{
function __construct() {
parent::__construct();
}
function getPage(){
$num = 5;
$this->view->load('test');
}
}
?>
扩展控制器类:
<?php
class Controller{
function __construct() {
$this->view = new View();
}
}
?>
查看类:
<?php
Class View{
function __construct() {
}
public function load($file){
include($_SERVER["DOCUMENT_ROOT"].'/main/views/'.$file.'.php');
}
}
?>
所以在test.php
文件中我尝试echo $num;
但我什么也没得到......
如果我尝试
$num = 5;
include($_SERVER["DOCUMENT_ROOT"].'/main/views/test.php');
它回响了 5
这里有什么问题?