当我安装作曲家,并设置自动加载选项,然后单击比主页我得到这个错误等我的链接“致命错误:未捕获的错误:类‘:\ XAMPP \ htdocs中\ gacho \程序\核心\应用程序的HomeController’用C未找到.PHP:13堆栈跟踪:#0 C:\ XAMPP \ htdocs中\ gacho \公共\的index.php(16):应用 - > __构建体()#1 {主}扔在C:\ XAMPP \ htdocs中\ gacho \应用\核心\ Application.php第13行”,但链接到主页工作得很好。这里是我的代码结构及代码:
代码结构
gacho
|-app
|- controller
|- core
|- model
|- view
|-public
|-vendor
|-composer
|- autoload_classmap.php
|- autoload.php
|- .htaccess
|- composer.json
|- index.php
的.htaccess
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^ index.php [QSA,L]
composer.json
{
"autoload": {
"classmap":[
"../app"
]
}
}
autoload_classmap
$vendorDir = dirname(dirname(__FILE__));
$baseDir = dirname($vendorDir);
return array(
'App\\Controller\\HomeController' => $baseDir .
'/../app/controller/HomeController.php',
'App\\Core\\Application' => $baseDir . '/../app/core/Application.php',
'App\\Core\\Controller' => $baseDir . '/../app/core/Controller.php',
'App\\Core\\Database' => $baseDir . '/../app/core/Database.php',
'App\\Core\\View' => $baseDir . '/../app/core/View.php',
'App\\Model\\User' => $baseDir . '/../app/model/User.php',
);
的index.php
define('ROOT', dirname(__DIR__) . DIRECTORY_SEPARATOR);
define('APP', ROOT . 'app' . DIRECTORY_SEPARATOR);
define('CONTROLLER', ROOT . 'app' . DIRECTORY_SEPARATOR . 'controller' .
DIRECTORY_SEPARATOR);
define('VIEW', ROOT . 'app' . DIRECTORY_SEPARATOR . 'view' .
DIRECTORY_SEPARATOR);
define('MODEL', ROOT . 'app' . DIRECTORY_SEPARATOR . 'model' .
DIRECTORY_SEPARATOR);
define('CORE', ROOT . 'app' . DIRECTORY_SEPARATOR . 'core' .
DIRECTORY_SEPARATOR);
$modules = [ROOT, APP, CORE, CONTROLLER];
require_once __DIR__ . '\vendor\autoload.php';
new Application;
Application.php
class Application
{
protected $controller = 'HomeController';
protected $action = 'index';
protected $params = [];
public function __construct()
{
$this->prepareURL();
if (file_exists(CONTROLLER. $this->controller . '.php')) {
$this->controller = new $this->controller;
if (method_exists($this->controller, $this->action)) {
call_user_func_array([$this->controller, $this->action], $this->params);
}
}
}
那么,类映射显示/../app/controller/HomeController.php
和您的错误信息显示Fatal error: Uncaught Error: Class 'homeController
。
所以,请确保您的控制器的文件名和类名都是一样的。 (写答案为OP要求)