我在加载Doctrine DBAL类后面临以下问题
use Doctrine\Common\ClassLoader;
require 'vendor/doctrine/common/lib/Doctrine/Common/ClassLoader.php';
$classLoader = new ClassLoader('Doctrine', 'vendor/doctrine/dbal/lib/Doctrine');
$classLoader->register();
$config = new \Doctrine\DBAL\Configuration();
输出:
致命错误:
Class' Doctrine \ DBAL \ Configuration'找不到
答案 0 :(得分:1)
您可以尝试像composer一样加载:
$classLoader = new ClassLoader('Doctrine\DBAL', 'vendor/doctrine/dbal/lib');