应该在屏幕底部呈现的 Web 分析器栏抛出“达到 '100' 的最大函数嵌套级别”错误,因为它陷入了无限循环,试图在生成的代码中加载相同的模板文件。
这是导致无限循环的两行代码。
0.5359 7623912 96. __TwigTemplate_12d25e382d980637bca9380c409ddd59->__construct(???) /var/www/site/app/cache/dev/classes.php:7999
0.5359 7624296 97. Twig_Environment->loadTemplate(???, ???) /var/www/site/app/cache/dev/twig/12/d2/5e382d980637bca9380c409ddd59.php:10
我检查了源代码,似乎同一个 Twig 模板正在其构造函数中加载自身。我在下面包含了这两个文件的源代码片段。我确定我需要包括更多,但我不确定要包括什么。
应用程序/缓存/dev/classes.php
public function loadTemplate($name, $index = null)
{
$cls = $this->getTemplateClass($name, $index);
if (isset($this->loadedTemplates[$cls])) {
return $this->loadedTemplates[$cls];
}
if (!class_exists($cls, false)) {
if (false === $cache = $this->getCacheFilename($name)) {
eval('?>'.$this->compileSource($this->loader->getSource($name), $name));
} else {
if (!is_file($cache) || ($this->isAutoReload() && !$this->isTemplateFresh($name, filemtime($cache)))) {
$this->writeCacheFile($cache, $this->compileSource($this->loader->getSource($name), $name));
}
require_once $cache;
}
}
if (!$this->runtimeInitialized) {
$this->initRuntime();
}
return $this->loadedTemplates[$cls] = new $cls($this); // CALLS THE CONSTRUCTOR BELOW
}
应用程序/缓存/开发/树枝/12/d2/5e382d980637bca9380c409ddd59.php
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
$this->parent = $this->env->loadTemplate("WebProfilerBundle:Profiler:layout.html.twig"); // CALLS THE loadTemplate METHOD ABOVE
$this->blocks = array(
'body' => array($this, 'block_body'),
'panel' => array($this, 'block_panel'),
);
}