PHP allow in array to be a space in the key like this:
(dump from symfony2)
array:9 [▼
"Guest" => 1
"Vip Client" => 2
"Super admin" => 3
]
So how can I access the data by key in Twig? Normaly for the Guest it will be {% array_name.Guest %} this will not work {% array_name['Vip Client'] %}