Passing Session to TWIG template

前端 未结 4 2002
春和景丽
春和景丽 2021-01-03 09:06

i have a problem when i want to get $_SESSION[\'session\']; in twig template using slim micro Framework.

this is my code :



        
4条回答
  •  無奈伤痛
    2021-01-03 09:48

    You should register session as a twig global, so it becomes accessible in your templates.

    //$twig is a \Twig_Environment instance
    $twig->addGlobal("session", $_SESSION);
    

    In your template:

    {{ session.username }}
    

提交回复
热议问题