7

这一直困扰着我一段时间,我似乎无法理解它。

我的 phpinfo 报告 PDO 已安装,我可以通过 index.php 文件连接到我的数据库。但是当我尝试在命名空间类上打开 PDO 连接时,php 正在尝试使用我的自动加载函数来查找不起作用的 PDO.php。

我的班级如下:

abstract class {

    protected $DB;

    public function __construct()
    {
        try {  
          $this->DB = new PDO("mysql:host=$host;port=$port;dbname=$dbname", $user, $pass);
        }  
        catch(PDOException $e) {  
            echo $e->getMessage();  
        }
    }
}

错误是

Warning: require_once((...)/Model/PDO.php): failed to open stream: No such file or directory in /(...)/Autoloader.php

Fatal error: require_once(): Failed opening required 'vendor/Model/PDO.php' (include_path='.:/Applications/MAMP/bin/php/php5.4.4/lib/php') in /(...)/Autoloader.php

据我所知,应该调用自动加载器,因为安装了 PHP PDO 扩展(是的,我完全确定)。

我的自动加载如下:

spl_autoload_register('apiv2Autoload');

/**
 * Autoloader
 * 
 * @param string $classname name of class to load
 * 
 * @return boolean
 */
function apiv2Autoload($classname)
{
    if (false !== strpos($classname, '.')) {
        // this was a filename, don't bother
        exit;
    }

    if (preg_match('/[a-zA-Z]+Controller$/', $classname)) {
        include __DIR__ . '/../controllers/' . $classname . '.php';
        return true;
    } elseif (preg_match('/[a-zA-Z]+Mapper$/', $classname)) {
        include __DIR__ . '/../models/' . $classname . '.php';
        return true;
    } elseif (preg_match('/[a-zA-Z]+Model$/', $classname)) {
        include __DIR__ . '/../models/' . $classname . '.php';
        return true;
    } elseif (preg_match('/[a-zA-Z]+View$/', $classname)) {
        include __DIR__ . '/../views/' . $classname . '.php';
        return true;
    }
}

请问有什么帮助吗?

4

1 回答 1

19

这不是真正的自动加载问题。您正在尝试调用根命名空间上的类。

从外观上看,您在某个“模型”命名空间中并正在调用PDO,您必须记住命名空间默认是相对的

您想要的是调用绝对路径:

\PDO

或在文件顶部说您将像这样使用 PDO:

use PDO;
于 2013-07-28T15:49:25.797 回答