因此,我有一个反映我的名称空间结构的目录。自动加载器正在正确加载包含我的课程的文件。 use子句使用别名指定正确的类。尽管如此,PHP说它找不到该类。传统上,我不使用名称空间,因为这总是发生在我身上。但是我试图强迫自己使用好的做法。因此,我在这里尝试了解为什么我无法使它正常工作。
我检查了自动加载器是否实际上已加载了文件。我检查了自动装带器使用的路径是否正确。
我的班级文件:
<?php
namespace classes\helpers\core_helper;
class core_helper
{
public static function create_arg_pairs($arguments)
{
.....
}
}//end core_helper
?>
我的主应用程序文件:
<?php
ini_set("display_errors", "1");
define('AUTH_ROOT', dirname(__FILE__));
use classes\helpers\core_helper as hlpr;
function autoloader($class)
{
if(require_once AUTH_ROOT.'/'.str_replace('\\','/',$class).'.php');
}
spl_autoload_register('autoloader');
......
$temp = explode("/", substr($path['path'], 1));
//get the controller
$contoller = strtolower(array_shift($temp));
//get the method
$method = strtolower(array_shift($temp));
$argArray = hlpr::create_arg_pairs($temp);
?>
产生的错误是:
致命错误:未捕获的错误:类'classes \ helpers \ core_helper'不是 在/var/www/html/auth/index.php:51中找到堆栈跟踪:#0 {main}抛出 在第51行的/var/www/html/auth/index.php中
但是,我知道包含该类的文件已加载,因此正确的名称空间已传递到自动加载器,并且已正确转换为正确的路径。那为什么我看不到课程呢?
答案 0 :(得分:1)
说
namespace classes\helpers\core_helper;
然后
class core_helper
您正在告诉系统您的实际班级是classes\helpers\core_helper\core_helper
。我希望您真正想要的是namespace classes\helpers;
。