我有一个类库,它有一个名为 load 的属性,它是类加载的对象。加载类有一个名为 view 的函数,其中包含页面。现在我需要打电话,
这类似于 CodeIgniter 的 $this->load->view("test.php");
负载等级
class Load {
public function view($page){
//this function loads views to display
include($page);
}
public function model($class){
//loads model classes
}
public function library($class){
//loads libraries
}
}
基类
class Base {
function __construct(){
$this->load = new Load();
}
}
索引页面
$base = new Base();
$base->load->view("test1.php");
this1.php
echo "testing1\n";
$this->load->view("test2.php");
test2.php
echo "testing2";
输出应该是
testing1
testing2