Example #1
0
 public static function run()
 {
     if (Route::isSelf()) {
         // 判断是否为index.php或admin.php本身
         self::handLoad(BIND_CONTROLLER);
         //如若为本身就访问本身绑定的index。
     } else {
         self::autoLoad();
     }
 }