php spl_autoload_register()不加载类

时间:2015-03-02 00:17:51

标签: php class domdocument autoload spl-autoload-register

我有 index.php ,需要 Test1 类通过spl_autoload_register()。在Test1类中,需要具有相同自动加载的Test2类,但发生此错误:

  

致命错误: DOMDocument :: registerNodeClass():类Test2没有   存在于......

我试着看看自动加载是否正在编写$test2 = new Test2();并且效果很好。因此,通过其他测试,我意识到使用registerNodeClass()自动加载并不包含Test2类文件。

有没有人可以帮助我?

Test1.php

<?php

namespace Test;

use Test\Test2;

class Test1
{
    function __construct($html)
    {
        $this->dom = new \DOMDocument();
        @$this->dom->loadHTML($html);
        $this->dom->registerNodeClass('DOMElement', 'Test2');
    }
}

?>

Test2.php

<?php

namespace Test;

class Test2 extends \DOMElement
{

//bla, bla, bla...

}

?>

的index.php

<?php

require_once('./autoload.php');

use Test\Test1;

$html = 'something';

$test = new Test1($html);

?>

autoload.php (这与Facebook用于php-sdk的情况相同)

<?php
/**
 * An example of a project-specific implementation.
 * 
 * After registering this autoload function with SPL, the following line
 * would cause the function to attempt to load the \Foo\Bar\Baz\Qux class
 * from /path/to/project/src/Baz/Qux.php:
 * 
 *      new \Foo\Bar\Baz\Qux;
 *      
 * @param string $class The fully-qualified class name.
 * @return void
 */
spl_autoload_register(function ($class) {

    // project-specific namespace prefix
    $prefix = 'Test\\';

    // base directory for the namespace prefix
    $base_dir = __DIR__ . '/src/';

    // does the class use the namespace prefix?
    $len = strlen($prefix);
    if (strncmp($prefix, $class, $len) !== 0) {
        // no, move to the next registered autoloader
        return;
    }

    // get the relative class name
    $relative_class = substr($class, $len);

    // replace the namespace prefix with the base directory, replace namespace
    // separators with directory separators in the relative class name, append
    // with .php
    $file = $base_dir . str_replace('\\', '/', $relative_class) . '.php';

    // if the file exists, require it
    if (file_exists($file)) {
        require $file;
    }
});
?>

1 个答案:

答案 0 :(得分:2)

Test2位于名称空间Test内,因此为了new Test2(),您必须位于名称空间Test内,或者您可以指定完全限定名称(即{ {1}})实例化该类。

当您致电new Test\Test2()时,DOMDocument会对以下内容产生影响:

$this->dom->registerNodeClass('DOMElement', 'Test2');

它找不到$extendedClass = 'Test2'; $obj = new $extendedClass(); ,因为该代码不是从Test2命名空间调用的。 因此,您需要传递完全限定的类名(w / namespace)。

使用:Test