首先:不要tag
用作您的服务名称,因为它已经被 Phalcon 的 Tag 对象使用。其次,您可以使用类中的静态方法。
下面是一个工作示例,用于myTag
使用我的应用程序中的配置,并为您的示例更改名称。
$di->set(
'view',
function () use ($config) {
$view = new View();
$view->setViewsDir($config->application->viewsDir);
$view->registerEngines(
array(
'.volt' => function ($view, $di) use ($config) {
$volt = new VoltEngine($view, $di);
$volt->setOptions(
array(
'compiledPath' => $config->application->cacheDir,
'compiledSeparator' => '_',
'compileAlways' => false
)
);
$compiler = $volt->getCompiler();
// add a function
$compiler->addFunction(
'myTag',
function ($resolvedArgs, $exprArgs) {
return 'MyTags::mytag(' . $resolvedArgs . ')';
}
);
// or filter
$compiler->addFilter(
'myFilter',
function ($resolvedArgs, $exprArgs) {
return 'MyTags::mytag(' . $resolvedArgs . ')';
}
);
return $volt;
}
)
);
return $view;
},
true
);
然后您可以myTag()
在伏特视图中使用您的功能。
但是如果你想使用对象,那么不要使用静态方法:
class MyTags extends \Phalcon\Tag
{
/**
* Look no static keyword here
*/
public function mytag($params)
{
<...>
}
}
在服务中使用对象:
$di->set('mahTag', function() {
return new MyTags();
};
然后在伏特:
{{ mahTag.mytag() }}