Symfony实现行为和模板中取得request参数的方法

前端之家收集整理的这篇文章主要介绍了Symfony实现行为和模板中取得request参数的方法前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

本文实例讲述了Symfony实现行为和模板中取得request参数的方法分享给大家供大家参考,具体如下:

一.模板中取得参数

PHP;"> getParameter('name','namespace');?> getParameter('name');?>

二.行为中取得参数

getParameter('name'); //模板中取得参数 get('name')?> //带默认值的参数 get('name','default')?> //在模板中判断一个参数是否存在 has('name')): ?>

Hello,get('name')?>!

Hello,JohnDoe!

//包含所有参数的数组 $request->getParameterHolder()->getAll() //完整的URI路径 //'http://localhost/myapp_dev.PHP/mymodule/myaction' getUri() //'/mymodule/myaction' getPathInfo() //在action中 $hasFoo =$this->getRequest()->hasParameter('foo'); $hasFoo = $this->hasRequestParameter('foo');//Shorter version $foo =$this->getRequest()->getParameter('foo'); $foo =$this->getRequestParameter('foo'); //Shorterversion

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

原文链接:https://www.f2er.com/php/20195.html

猜你在找的PHP相关文章