ManaPHP\Mvc\RouterInterface::handle PHP Метод

handle() публичный Метод

$router->handle(); //==>$router->handle($_GET['_url'],$_SERVER['HTTP_HOST']); $router->handle('/blog'); //==>$router->handle('/blog',$_SERVER['HTTP_HOST']); $router->handle('/blog','www.manaphp.com');
public handle ( string $uri = null, string $host = null, boolean $silent = true ) : boolean
$uri string
$host string
$silent boolean
Результат boolean
    public function handle($uri = null, $host = null, $silent = true);