我想在另一个模板文件中包含模板文件,以便获取变量值 就像我有两个文件 _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的范围将是视图对象。
感谢您的帮助。