What to use instead of Twig_Loader_String

前端 未结 7 1950
醉梦人生
醉梦人生 2020-12-25 15:29

I see that the Twig_Loader_String class has been deprecated and will be removed in Twig 2.0. Also, the comments in the source indicate that it should \"NEVE

7条回答
  •  情话喂你
    2020-12-25 15:56

    Try it

    $template = $this->container->get('twig')->createTemplate('hello {{ name }}');
    echo $template->render(array('name' => 'Fabien'));
    

提交回复
热议问题