我发誓我已经用谷歌搜索过这个并试图理解文档,但我就是不明白。我正在编写一个 twig 函数,我无法理解的是如何访问从函数内部传递给 render 的变量。
所以如果我有这个注册我的扩展并调用渲染:
$o = new SomeObject();
$twig->addExtension(new MyExtension());
$twig->render('example.html',array('obj'=>$o))
而example.html就是{{ myfunc('foo') }}
我如何从MyExtension中的myfunc内部访问变量'obj':
class MyExtension extends \Twig_Extension
{
public function getName()
{
return 'myextension';
}
public function getFunctions()
{
return array(
new \Twig_SimpleFunction('myfunc', 'MyExtension::myfunc', array('needs_environment' => true))
);
}
public static function myfunc(\Twig_Environment $env, $name)
{
//how to I get 'obj' from $twig->render in here?
}
}