i have a problem when i want to get $_SESSION[\'session\']; in twig template using slim micro Framework.
$_SESSION[\'session\'];
this is my code :
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 }}