您应该能够Url
作为变量传递$url
,并在您的视图中使用{$url->test()}
. 我不确定您是否可以访问静态函数Url::test()
。
如果您在相同的视图中使用助手,您可以创建一个新的控制器来绑定视图中的变量:
<?php
// application/classes/controller/site.php
class Controller_Site extends Controller_Template
{
public $template = 'smarty:my_template';
public function before()
{
$this->template->set_global('url_helper', new Url);
}
}
?>
然后在你的其他控制器中扩展它:
<?php
// application/classes/controller/welcome.php
class Controller_Welcome extends Controller_Site
{
public function action_index()
{
$this->template->content = 'Yada, yada, yada...';
}
}
并在您的视图中访问它:
{* application/views/my_template.tpl *}
<p>This is a {$url_helper->test()}.</p>
<p>{$content}</p>