Symfony渲染模板到字符串

时间:2011-04-14 07:06:55

标签: php symfony1 rendering

有没有办法在动作中将完全渲染的模板(有或没有布局)作为字符串?

即。这些方面的东西:

public function executeMyAction()
{
   $this->variable1 = 'foo';
   $this->variable2 = 'bar';

   // renders template using assigned variables, partials, layouts, etc. as if it was for    output to browser, but assigns html to string
   $renderedTemplate = $this->renderTemplateToString();
}

P.S。我知道this question,但是答案提供给我的目的并没有那么好。链接不起作用,getPartial获取模板文件而不进行渲染。

1 个答案:

答案 0 :(得分:5)