Zend在另一个模板中包含模板文件

时间:2014-08-06 07:04:45

标签: templates zend-framework

我想在另一个模板文件中包含模板文件,以便获取变量值 就像我有两个文件 _template1.phtml template2.phtml

_template1.phtml 中我有:

$this->text[] = 'Text here';

template2.phtml 中,我想访问"text"的值。我试过了

$this->render('folder/template2.phtml');
var_dump($text);
var_dump($this->text);

但这两种方法都不起作用。

我需要的是_template1文件将包含在模板中,因此$ this的范围将是视图对象。

感谢您的帮助。

0 个答案:

没有答案