这是 index.php
<?php
include 'library/altorouter.php';
$router = new AltoRouter();
$router->setBasePath('/AltoRouter');
$router->map('GET','/', 'home_controller#index', 'home');
$router->map('GET','/content/[:parent]/?[:child]?', 'content_controller#display_item', 'content');
$match = $router->match();
// not sure if code after this comment is the best way to handle matched routes
list( $controller, $action ) = explode( '#', $match['target'] );
if ( is_callable(array($controller, $action)) ) {
$obj = new $controller();
var_dump($obj);
call_user_func_array(array($obj,$action), array($match['params']));
} else if ($match['target']==''){
echo 'Error: no route was matched';
} else {
echo 'Error: can not call '.$controller.'#'.$action;
}
// content_controller class file is autoloaded
class home_controller {
public function index() {
echo 'hi from home';
}
}
它运作良好。 home_controller类应该是默认控制器。
问题是,当我删除类home_controller
时class home_controller {
public function index() {
echo 'hi from home';
}
}
并将其保存为 app / controller 中的单独文件 home_controller.php .directroy它不起作用。
我知道路由器无法找到home_controller类,因此不会显示它的内容(如果我直接包含文件home_controller.php它会再次正常工作)。
我的问题是,如何将home_controller映射为默认值,它位于不同的目录中?
答案 0 :(得分:1)
您好像没有使用composer来安装软件包。这是PHP的标准方法。
转到项目的根目录,打开命令行并输入:
composer require altorouter/altorouter
您可以在包裹的Github页面altorouter/altorouter
的{{1}}中找到包名composer.json
。
index.php
现在您已经安装了路由器包。下一步是将所有编写器加载的文件添加到您的应用程序。只需将include 'library/altorouter.php';
替换为以下内容:
<?php
# index.php
require_once __DIR__ . '/vendor/autoload.php';
最后一步是告诉作曲家在哪里找到你的课程。
打开composer.json
并添加以下部分:
{
"autolaod": {
"classmap": ["app"]
}
}
详细了解here。
要使用此选项更新/vendor/autoload.php
,只需从命令行调用:
composer dump-autoload
那应该是它。如果遇到任何麻烦,请告诉我哪一点。