由于某种原因,我无法启动 AltoRouter。我正在尝试最基本的调用,但什么也没发生。我怎样才能让它工作?
我的 index.php 文件如下所示:

    <?php

    include('settings/autoload.php');

    use app\AltoRouter;

    $router = new AltoRouter;

    $router->map('GET', '/', function(){

        echo 'It is working';
    });

$match = $router->match();

autoload.php :
<?php

require_once('app/Router.php');

最佳答案

你的问题是,根据 documentation (与 Slim Framework 相比,它似乎具有相同的语法),AltoRouter 不会为你处理请求,它只会匹配它们。
因此,通过调用 $router->match(),您可以获得以您喜欢的任何方式处理请求所需的所有信息。
如果您只想调用闭包函数,只需修改您的代码:

<?php

// include AltoRouter in one of the many ways (Autoloader, composer, directly, whatever)
$router = new AltoRouter();

$router->map('GET', '/', function(){

    echo 'It is working';
});

$match = $router->match();

// Here comes the new part, taken straight from the docs:

// call closure or throw 404 status
if( $match && is_callable( $match['target'] ) ) {
        call_user_func_array( $match['target'], $match['params'] );
} else {
        // no route was matched
        header( $_SERVER["SERVER_PROTOCOL"] . ' 404 Not Found');
}

瞧——现在你会得到你想要的输出!

关于PHP AltoRouter - 无法获得 GET 请求,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28152847/

10-09 21:22