Как сделать мои маршруты более эффективными?
Сделав директивы rewrite в файле .htaccess, я пишу свои пользовательские директивы. class Route { public $request_url; public $url_args; public $request_method; function __construct() { $this -> request_url = $_SERVER['PATH_INFO']; $this -> url_args = explode('/', substr($_SERVER['PATH_INFO'], 1)); $this -> request_method = $_SERVER['REQUEST_METHOD']; } public function get($url, $callback) { if($this -> request_method == 'GET') { if($url == $this […]