こんにちは皆さん、次のことを手伝ってくれませんか。
次のコードがあります
index.php
set_include_path(get_include_path()
.PATH_SEPARATOR.'application/controllers'
.PATH_SEPARATOR.'application/models'
.PATH_SEPARATOR.'application/views');
spl_autoload_register();
$front = new Controller;
$front->route();
Controller.php
public function route(){
if(class_exists($this->getController())){...}......
私には1つの方法があります。使用する代わりに、spl_autoload_register();
私は書くことができます
function __autoload($classname) {
@include_once $classname.'.php';
}
しかし、php のドキュメントによると、spl_autoload_register を使用したいと考えています...完全なコードが必要な場合は、喜んでデモを行います。
ありがとうございました!