1

我想我可能在这里遗漏了一些简单的东西,需要第二双眼睛。这失败了,找不到致命的错误类。自动加载功能取自 PSR-0 github 页面。

<?php

function my_autoload($className)
{
    $className = ltrim($className, '\\');
    $fileName  = '';
    $namespace = '';
    if ($lastNsPos = strrpos($className, '\\')) {
        $namespace = substr($className, 0, $lastNsPos);
        $className = substr($className, $lastNsPos + 1);
        $fileName  = str_replace('\\', DIRECTORY_SEPARATOR, $namespace) . DIRECTORY_SEPARATOR;
    }
    $fileName .= str_replace('_', DIRECTORY_SEPARATOR, $className) . '.php';

    return $fileName;
}

spl_autoload_register('my_autoload');

new Vendor\Package\Example();

这是我的 index.php,类位于 Vendor/Package/Example.php,这是内容。

<?php

namespace Vendor\Package;

class Example {

    public function __construct() {
        echo __CLASS__ . ' Created with Namespace ' . __NAMESPACE__;
    }

}

当我这样做时它有效require_once my_autoload('Vendor\Package\Example');

4

1 回答 1

4

自动加载功能取自 PSR-0 github 页面。

不,在页面上没有return $fileName;但是require $fileName;

于 2013-04-09T21:30:03.993 回答