一个php运行时错误

时间:2014-04-04 22:08:10

标签: php oop autoloader

我有一个产生以下错误的PHP脚本

解析错误:语法错误,意外情况' [',期待')'在第20行的/home/masked/public_html/masked/AutoLoader.php

(请注意,我屏蔽了目录的某些部分,因为它们与个人信息相对应。)

(第20行是spl_autoload_register([$ autoloader,' load']);在注册函数中找到。

我正在运行PHP 5.5 我也尝试过使用PHP 5.3.27并获得完全相同的结果。

代码吼叫

run.php

require_once 'AutoLoader.php';
AutoLoader::register('src');

AutoLoader.php

/**
 * A basic PSR style autoloader
 */
class AutoLoader
{
    protected $dir;
    protected $ext;

    public function __construct($dir, $ext = '.php')
    {
        $this->dir = rtrim($dir, DIRECTORY_SEPARATOR);
        $this->ext = $ext;
    }

    public static function register($dir, $ext = '.php')
    {
        $autoloader = new static($dir, $ext);
        spl_autoload_register([$autoloader, 'load']);

        return $autoloader;
    }

    public function load($class)
    {
        $dir = $this->dir;

        if ($ns = $this->get_namespace($class)) {
            $dir .= DIRECTORY_SEPARATOR.str_replace('\\', DIRECTORY_SEPARATOR, $ns);
        }

        $inc_file = $dir.DIRECTORY_SEPARATOR.$this->get_class($class).$this->ext;

        if (file_exists($inc_file)) {
            require_once $inc_file;
        }
    }

    // Borrowed from github.com/borisguery/Inflexible
    protected static function get_class($value)
    {
        $className = trim($value, '\\');

        if ($lastSeparator = strrpos($className, '\\')) {
            $className = substr($className, 1 + $lastSeparator);
        }

        return $className;
    }

    // Borrowed from github.com/borisguery/Inflexible
    public static function get_namespace($fqcn)
    {
        if ($lastSeparator = strrpos($fqcn, '\\')) {
            return trim(substr($fqcn, 0, $lastSeparator + 1), '\\');
        }

        return '';
    }

}

1 个答案:

答案 0 :(得分:0)

在run.php上尝试:

require_once('Autoloader.php');