如何在symfony中获取模板
来源:爱站网时间:2020-11-05编辑:网友分享
如何在symfony中获取模板?相信很多人都或多或少都有些疑惑,本文是爱站技术频道小编和大家分享的如何在symfony中获取模板,需要的朋友可以参考下面的介绍。
如何在symfony中获取模板?相信很多人都或多或少都有些疑惑,本文是爱站技术频道小编和大家分享的如何在symfony中获取模板,需要的朋友可以参考下面的介绍。
具体如下:
一.模板中取得参数
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中获取模板,其实只要我们想学习,这些知识就能成为匹配我们项目的功能。