Symfony2实现在controller中获取url的方法
程序员文章站
2022-05-08 16:02:46
...
本文实例讲述了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();// 1
本文实例讲述了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实现在doctrine中内置数据的方法,symfony2doctrine_PHP教程
-
spring boot中controller的使用及url参数的获取方法
-
spring boot中controller的使用及url参数的获取方法
-
实现在同一方法中获取当前方法中新赋值的session值解决方法
-
js中获取URL参数的共用方法getRequest()方法实例详解
-
JS中通过url动态获取图片大小的方法小结(两种方法)
-
Symfony2实现在doctrine中内置数据的方法
-
在asp.net中获取当前页面的URL的方法(推荐)
-
ASP.NET实现MVC中获取当前URL、controller及action的方法
-
php获取URL中带#号等特殊符号参数的解决方法