0

我发誓我已经用谷歌搜索过这个并试图理解文档,但我就是不明白。我正在编写一个 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?
  }
}
4

1 回答 1

4

您想'needs_context' => true在函数声明中使用:

new \Twig_SimpleFunction('myfunc', [$this, 'myfunc'], [
    'needs_environment' => true,
    'needs_context' => true,
])

然后,您将获得needs_environment一个包含当前上下文数据的数组,作为第一个(或第二个,如果也为真)参数。这将保存您的变量。

public function myfunc(\Twig_Environment $env, $context, $name)
{
     var_dump($context);
}
于 2016-09-14T06:25:42.630 回答