我想在模板中使用不同的对象。在网站的不同部分创建了不同的对象。
目前我的代码是
public function notify ($template, $info)
{
ob_start();
include $template;
$content = ob_get_clean();
//... more further code
}
如您所见$ info参数。我不想在模板中使用$ info,但我使用$ photo,$ admin或传递给它的任何内容。
我用的是
// for feed
$user->notify('email_template_feed.php', $feed);
// for new photo - i would also like to use $user inside templates
$user->notify('email_template_photo.php', $photo);
我该怎么做?不能使用全局,因为内部函数和函数在站点的不同位置/部分动态调用,这可以进一步扩展。
答案 0 :(得分:3)
解决方案1
相反,您可以使用数组并提取其值:
public function notify ($__template, array $info)
{
ob_start();
extract($info);
include $__template;
$content = ob_get_clean();
//... more further code
}
示例1
如果你打电话给:
$user->notify('email_template_feed.php', array('feed' => $feed));
并在模板email_template_feed.php
内:
...
<?=$feed?>
...
它会打印出来:
...
FEED
...
解决方案2
您还可以将变量的名称作为第三个参数传递:
public function notify ($template, $info, $name)
{
ob_start();
$$name = $info;
unset($info);
include $template;
$content = ob_get_clean();
//... more further code
}
示例2
然后您可以通过以下方式调用它:
$user->notify('email_template_feed.php', $feed, 'feed');