Python语言技术文档

微信小程序技术文档

php语言技术文档

jsp语言技术文档

asp语言技术文档

C#/.NET语言技术文档

html5/css技术文档

javascript

点击排行

您现在的位置:首页 > 技术文档 > php框架

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

来源:中文源码网    浏览:129 次    日期:2024-05-16 01:47:15
【下载文档:  Symfony实现行为和模板中取得request参数的方法.txt 】


Symfony实现行为和模板中取得request参数的方法
本文实例讲述了Symfony实现行为和模板中取得request参数的方法。分享给大家供大家参考,具体如下:
一.模板中取得参数
getParameter('name','namespace');?>
getParameter('name');?>
二.行为中取得参数
$request->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程序设计有所帮助。

相关内容