私は管理者クラスを持っています:
<?php
Class Admin extends Controller{
function __construct() {
parent::__construct();
}
function getPage(){
$num = 5;
$this->view->load('test');
}
}
?>
拡張Controllerクラス:
<?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
ここで問題は何ですか?