首頁  >  文章  >  php教程  >  Symfony2實作在controller中取得url的方法

Symfony2實作在controller中取得url的方法

高洛峰
高洛峰原創
2016-12-26 12:26:101201瀏覽

本文實例講述了Symfony2實作在controller中取得url的方法。分享給大家供大家參考,如下:

// 假设当前URL地址是http://192.168.1.100/demo/web/app_dev.php/m/index
$request = $this->getRequest();
// http or https 此处为http
$request->getScheme();
// 192.168.1.100
$request->getHttpHost();
// http://192.168.1.100
$request->getSchemeAndHttpHost();
// /demo/web/
$request->getBasePath();
// /demo/index.php
$request->getBaseUrl();
// eg: /demo/web/app_dev.php/user/login 不一定是/demo/web/app_dev.php/m/index 取决于routeName
$this->generateUrl('routeName');
// routeName
$routeName = $request->get('_route');

   

希望本文所述對大家基於Symfony框架的PHP程式設計有所幫助。

更多Symfony2實現在controller中獲取url的方法相關文章請關注PHP中文網!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn