简单的MVC错误页面

时间:2017-11-08 18:01:18

标签: php routing routes

好吧,我正在尝试为我的MVC源创建一个错误页面。

股票/inc/route.php

<?php

  Route::set('index.php', function() {
    Index::CreateView('Index');
  });

  Route::set('modelTest', function() {
    ModT::CreateView('ModT');
  });

 ?>

股票/class/route.class.php

<?php

  class Route {

    public static $validRoutes = array();

    public static function set($route, $function) {

      self::$validRoutes[] = $route;

      if($_GET['return'] == $route) {
        $function->__invoke();
      } else {
        echo "Route not found";
      }

    }

  }

 ?>

我已经尝试了其他语句,然后它回应了页面本身的错误,我在数组中尝试然后当它错误时回声它们的路由次数。

我希望有人能指出我正确的方向来解决这个问题。

0 个答案:

没有答案