使用spl_autoload()无法加载类

时间:2010-07-06 14:36:51

标签: php spl spl-autoloader

我正在玩SPL自动加载功能,似乎缺少重要的东西,因为我目前无法让它工作。以下是我目前使用的代码段:

// ROOT_DIRECTORY translates to /home/someuser/public_html/subdomains/test
define('ROOT_DIRECTORY', realpath(dirname(__FILE__)));
define('INCLUDE_DIRECTORY', ROOT_DIRECTORY . '/includes/classes/');
set_include_path(get_include_path() . PATH_SEPARATOR . INCLUDE_DIRECTORY);
spl_autoload_extensions('.class.php, .interface.php, .abstract.php');
spl_autoload_register();

当我echo get_include_path()时,我确实得到了我期望的路径:

// Output echo get_include_path();
.:/usr/lib/php:/usr/local/lib/php:/home/someuser/public_html/subdomains/test/includes/classes/

然而,当我运行代码时,我收到此错误消息:

  

致命错误:spl_autoload()[function.spl-autoload]:无法加载类请求   /home/someuser/public_html/subdomains/test/contact.php   在第5行

Request.class.php在/ home / someuser / public_html / subdomains / test / includes / classes /目录中肯定是

我错过了什么?

3 个答案:

答案 0 :(得分:19)

http://www.php.net/manual/en/function.spl-autoload-register.php#96804上有一条评论(匿名)可能适用于您的问题:spl_autoload_register()似乎不适合使用camelcase,在您的情况下可能会尝试查找request.class.php而不是请求......

答案 1 :(得分:0)

该类的路径似乎与您期望的路径不匹配。比较

.:/usr/lib/php:/usr/local/lib/php:/home/someuser/public_html/subdomains/test/includes/classes/

/home/someuser/public_html/subdomains/test/

不同之处在于,您的课程不在includes/classes/,因为您的SPL需要它,但上面有几个目录。

答案 2 :(得分:0)

我收到了类似的错误消息,但我的问题不同了。我的错误消息看起来像

PHP Fatal error:  spl_autoload(): Class Lib\Lib\Regex could not be loaded in /dir1/dir2/lib/regex.php on line 49

原来我忘了从Regex类定义本身的Lib\中删除Lib\Regex。我有类似以下内容:

namespace Lib;

class Regex {

...

   public static function match($pattern, $str) {

      $regex = new Lib\Regex($pattern);

      ...
   }
}