Symfony2 構成ファイルにいくつかの事前定義されたパラメーターがあります。%kernel.root_dir%
、%kernel.debug%
。
- これらの包括的なリストはどこかにありますか?
Symfony2 構成ファイルにいくつかの事前定義されたパラメーターがあります。%kernel.root_dir%
、%kernel.debug%
。
彼らは下にいSymfony\Component\HttpKernel\Kernel.php
ます。
/**
* Returns the kernel parameters.
*
* @return array An array of kernel parameters
*/
protected function getKernelParameters()
{
$bundles = array();
foreach ($this->bundles as $name => $bundle) {
$bundles[$name] = get_class($bundle);
}
return array_merge(
array(
'kernel.root_dir' => $this->rootDir,
'kernel.environment' => $this->environment,
'kernel.debug' => $this->debug,
'kernel.name' => $this->name,
'kernel.cache_dir' => $this->getCacheDir(),
'kernel.logs_dir' => $this->getLogDir(),
'kernel.bundles' => $bundles,
'kernel.charset' => $this->getCharset(),
'kernel.container_class' => $this->getContainerClass(),
),
$this->getEnvParameters()
);
}