What to use instead of Twig_Loader_String

前端 未结 7 1969
醉梦人生
醉梦人生 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 16:03

    $environment = new \Twig_Environment(new \Twig_Loader_Array(array()));
    $template = $environment->createTemplate('{{ template }} {{ replacements }}');
    
    echo $template->render([replacements]);
    

提交回复
热议问题