我一直在尝试使用altorouter获取Home控制器的index()方法,但无法。我已经搜索了几个地方,但我找不到任何帮助。
这是索引.php
<?php
include 'system/startup.php';
include 'library/AltoRouter.php';
// Router
$router = new AltoRouter();
// Change here before upload
$router->setBasePath('/demo');
$router->map('GET|POST','/', 'home#index', 'home');
// match current request
$match = $router->match();
if( $match && is_callable( $match['target'] ) ) {
call_user_func_array( $match['target'], $match['params'] );
} else {
// no route matched
header( $_SERVER["SERVER_PROTOCOL"] . ' 404 Not Found');
}
目录>控制器目录中的主控制器。
<?php
class home {
public function index() {
echo 'home';
}
}
任何人都可以使用或曾经使用过此中音路由器指南吗?
附言我在启动.php文件中有自动加载功能(包含在索引.php的顶部)
这是旧线程,但这可以帮助您。您需要以不同的方式请求匹配:
<?php
include 'system/startup.php';
include 'library/AltoRouter.php';
// Router
$router = new AltoRouter();
$router->setBasePath('/demo');
$router->map('GET|POST','/', 'home#index', 'home');
$match = $router->match();
if ($match === false) {
// here you can handle 404
} else {
list( $controller, $action ) = explode( '#', $match['target'] );
if ( is_callable(array($controller, $action)) ) {
call_user_func_array(array($controller,$action), array($match['params']));
} else {
// here your routes are wrong.
// Throw an exception in debug, send a 500 error in production
}
}