当前位置:首页 > CMS教程 > 其它CMS > 列表

Symfony2实现在controller中获取url的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-07-18 11:21:19 浏览: 评论:0 

这篇文章主要介绍了Symfony2实现在controller中获取url的方法,实例分析了Symfony获取URL的常用方法与使用技巧,需要的朋友可以参考下。

本文实例讲述了Symfony2实现在controller中获取url的方法,分享给大家供大家参考,具体如下:

  1. // 假设当前URL地址是http://192.168.1.100/demo/web/app_dev.php/m/index 
  2. $request = $this->getRequest(); 
  3. // http or https 此处为http 
  4. $request->getScheme(); 
  5. // 192.168.1.100 
  6. $request->getHttpHost(); 
  7. // http://192.168.1.100 
  8. $request->getSchemeAndHttpHost(); 
  9. // /demo/web/ 
  10. $request->getBasePath(); 
  11. // /demo/index.php 
  12. $request->getBaseUrl(); 
  13. // eg: /demo/web/app_dev.php/user/login 不一定是/demo/web/app_dev.php/m/index 取决于routeName 
  14. $this->generateUrl('routeName'); 
  15. // routeName 
  16. $routeName = $request->get('_route'); 

希望本文所述对大家基于Symfony框架的PHP程序设计有所帮助。

Tags: Symfony2 controller

分享到: