What to use instead of Twig_Loader_String

前端 未结 7 1989
醉梦人生
醉梦人生 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:50

    $tplName = uniqid( 'string_template_', true );
    $env = clone $this->getTwig();
    $env->setCache(false);
    $env->setLoader( new \Twig_Loader_Array( [ $tplName => 'Hello, {{ name }}' ] ));
    $html = new Response( $env->render( $tplName, [ 'name' => 'Bob' ] ));
    
    echo $html; // Hello, Bob
    

提交回复
热议问题