在Twig模板中获取 request参数

app.request.server.get('HTTP_X_REQUESTED_WITH') 就是 $_SERVER['HTTP_X_REQUESTED_WITH']


相关的参数 或者 变量 常量


Symfony\Component\HttpKernel\Kernel
Symfony\Component\HttpFoundation\Request
Symfony\Component\Security\Core\SecurityContext
Symfony\Component\HttpFoundation\Session
Symfony\Component\Security\Core\Authentication\Token\TokenInterface::getUser


可以在twig中获取的


例如

{{app.kernel.cachedir}}
{{app.kernel.logdir}}
{{app.kernel.rootdir}}
{{app.request.basepath}}
{{app.request.baseurl}}
{{app.request.uri}}
{{app.security.token.user}}
{{app.session.locale}}


你可能感兴趣的:(在Twig模板中获取 request参数)