Symfony2实现在controller中获取url的方法
程序员文章站
2024-02-11 10:13:58
本文实例讲述了symfony2实现在controller中获取url的方法。分享给大家供大家参考,具体如下:
// 假设当前url地址是http://192.16...
本文实例讲述了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程序设计有所帮助。
上一篇: python线程、进程和协程详解
下一篇: Oracle备库宕机启动的完美解决方案
推荐阅读
-
Symfony2实现在controller中获取url的方法
-
php获取URL中带#号等特殊符号参数的解决方法,
-
php获取url地址中的域名几种方法
-
Symfony2实现在controller中获取url的方法_PHP
-
Symfony2实现在controller中获取url的方法,symfony2controller_PHP教程
-
Symfony2实现在controller中获取url的方法_PHP
-
Symfony2实现在controller中获取url的方法,symfony2controller
-
php获取URL中带#号等特殊符号参数的解决方法
-
Symfony2实现在controller中获取url的方法_php实例
-
Symfony2实现在doctrine中内置数据的方法,symfony2doctrine_PHP教程