示例#1
0
文件: App.php 项目: haohong725/xmvc
 public function run()
 {
     $this->initDI();
     $this->registerRouter();
     Macaw::dispatch();
 }
示例#2
0
<?php

use framework\component\Macaw;
Macaw::$controller_namespace = 'app\\controllers\\';
Macaw::get('', 'IndexController@index');
Macaw::get('f**k', function () {
    echo "成功!";
});
Macaw::$error_callback = function () {
    throw new Exception("路由无匹配项 404 Not Found");
};