使用require_once时,在LoggerRoot.php中找不到类“Logger”

时间:2013-07-24 12:23:46

标签: php log4php

我在这里使用log4php,并在使用require_once时保持get错误:

$path = dirname(__FILE__) . '/../log4php';
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
require_once 'Logger.php';

PHP Fatal error:  Class 'Logger' not found in /home/user/project/log4php/LoggerRoot.php on line 37.

已经尝试将log4php文件夹添加到include_path,并使用log4php的完整路径,但没有运气。实际上,我使用eclipse,在eclipse中,我可以按Ctrl +单击Logger类,这意味着路径应该没有问题。

有什么想法吗?

非常感谢〜


解决方案: 仍然不知道我有错误,但似乎是因为我使用了这个link的旧的纯log4php库。在更改为使用2.3.0的新库后,问题就解决了。

0 个答案:

没有答案