在 Twig 或 PHP 模板中訪問請求
在 Twig 模板中,Request 物件可在
{{ app.request }}
如果你想在 Twig 中顯示請求方法,請嘗試以下方法:
<p>Request method: {{ app.request.method }}</p>
在 PHP 模板中
<p>Request method: <?php echo $app->getRequest()->getMethod() ?></p>
在 Twig 模板中,Request 物件可在
{{ app.request }}
如果你想在 Twig 中顯示請求方法,請嘗試以下方法:
<p>Request method: {{ app.request.method }}</p>
在 PHP 模板中
<p>Request method: <?php echo $app->getRequest()->getMethod() ?></p>