Здравствуйте хочу создать MVC app беру пример с Laravel там есть функция
Route::get('/', function () {
return view('welcome');
});
//или
Route::get('/', 'Controller@function');
а я сделал так:
//index.php
require "Debug.php";
use app\core\Router;
spl_autoload_register(function($class){
$path = str_replace('\\','/',$class).'.php';
if(file_exists($path)){
require $path;
}
});
session_start();
require 'app/core/web.php';
$router = new Router;
//Router.php
namespace app\core;
class Router{
public static $routes = [];
public function __construct(){
$uri = $_SERVER['REQUEST_URI'];
if(array_search($uri,self::$routes)){
echo $uri;
}else{
header('Location:/beejee/404');
}
}
static public function get($url,$param){
echo $param;
self::$routes[] = '/beejee'.$url;
}
static public function post($url){
self::$routes[] = '/beejee'.$url;
}
static public function put($url){
self::$routes[] = '/beejee'.$url;
}
static public function delete($url){
self::$routes[] = '/beejee'.$url;
}
}
//web.php
use app\core\Router;
Router::get('/',function(){
return 'home';
});
Router::get('/admin',function(){
return 'asd';
});
Router::get('404');
как мне реализовать так чтобы было как в laravel?