我尝试用 PHP-DI 做一个项目,但我遇到了问题。
这是跟踪:
这是代码:
容器类:
$this->containerBuilder->addDefinitions([
'Configuration' => DI\Object('Hetwan\Core\Configuration')->constructor($this->getRootDir().'/app/config/config.yml'),
'Database' => DI\object('Hetwan\Core\Database')
]);
配置类:
namespace Hetwan\Core;
use Symfony\Component\Yaml\Yaml;
class Configuration
{
private $attrs;
public function __construct($configFilePath)
{
$this->attrs = Yaml::parse(file_get_contents($configFilePath));
}
public function get($attrPath)
{
$el = $this->attrs;
foreach (explode('.', $attrPath) as $attr)
{
if (!isset($el[$attr]))
throw new ConfigurationException("Unable to get '{$attrPath}'.\n");
$el = $el[$attr];
}
return $el;
}
}
数据库类:
namespace Hetwan\Core;
use Hetwan\Core\Configuration;
class Database
{
/**
* @Inject
* @var Configuration
*/
private $config;
private $entityManager;
public function create($entitiesPath)
{
$dbParameters = [
'driver' => 'pdo_mysql',
'user' => $config->get('database.user'),
'password' => $config->get('database.password'),
'dbname' => $config->get('database.name')
];
$this->entityManager = EntityManager::create($dbParameters, Setup::createAnnotationMetadataConfiguration([$entitiesPath], false));
}
public function getEntityManager()
{
return $this->entityManager;
}
}
我可以$container->get('Configuration')
毫无问题地访问它并且它有效。
但是在创建 Database 类时,我认为 PHP-DI 尝试重新创建 Configuration 的实例,但我不知道为什么,因为这里已经有一个单例实例。
感谢您的帮助!