mvc-php MVC怎麼實現自動載入不同命名空間的類?

來源:互聯網
上載者:User
關鍵字 php mvc
phpmvc

我自己想嘗試著寫個簡單的MVC架構,結果在自動載入時就卡住了,求高手指點下
這是目錄結構

代碼如下
入口檔案index.php
define('BASEDIR',__DIR__);
require BASEDIR.'\autoload.php';
spl_autoload_register('controllers\Loader::autoload');
$c = strtolower($_GET['c']); //控制器名
$a = strtolower($_GET['a']); //方法名
$controller = 'controllers\index\'.$c.'Controller'; //就是這個地方我想直接new,而不需要在前面加命名空間,不知道該怎麼實現
//$controller = $c.'Controller';
$obj = new $controller();
$obj->$a();

控制器commonController.class.php:
namespace controllers\common;
class commonController {
/**

  • @param string $templets
  • @param array $var*/public function display($templets,$var){define('BASEDIR',__DIR__);ob_clean();ob_start();extract($var);$templets = str_replace('/','\',$templets);$tmp_file = BASEDIR.'\views\'.$templets.'.html';include_once $tmp_file;echo ob_get_contents();}}

控制器indexController.class.php:
namespace controllers\index;
use controllers\common\commonController;
class indexController extends commonController{
public function index(){
$this->display('index/index',['test'=>'success']);
}
}

自動載入類autoload.php:
namespace controllers;
class Loader{
static function autoload($className){
$class = BASEDIR.'\'.$className.'.class.php';
$class = str_replace('\','/',$class);
if(file_exists($class)){
include_once $class;
}
}
}
我想在入口檔案直接new載入的類,而不需要在前面添加命名空間,該怎麼做,求大神指點下

  • 相關文章

    聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.