如何访问请求中传递的参数
如何在控制器中访问此参数值..?
$router->map('Company', 'Company', array(
'controller' => 'companies',
'action' => 'add',
'paramkey' => 'paramvalue',
'anotherparam' => 'anothervalue'));
请帮助我
how to access this paramvalue in controller..?
$router->map('Company', 'Company', array(
'controller' => 'companies',
'action' => 'add',
'paramkey' => 'paramvalue',
'anotherparam' => 'anothervalue'));
Plz help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
Try
获取一个参数:
获取所有参数:
或者
我正在使用 Zend Framework,因此 Zend_Action_Contoller 中描述的方法:
如果您使用的是 CacePHP,您可以尝试,
但我不确定它是否有效
get one param:
get all params:
or
I`m using Zend Framework so method described in Zend_Action_Contoller:
if you are using CacePHP you can try
but I`m not sure it will work