我正在尝试从ZF REST URL中提取GET参数.这不是当前的请求,我不想调用URL或执行路由,只需要参数.我正在寻找一个效用函数,如parse_url(),但是用于Zend REST格式.有没有一个,还是要重新发明?
原文链接:https://www.f2er.com/php/138084.html我已经尝试了一些事情,如创建一个新的Zend_Controller_Request_Http,但参数没有被填充.它是一个有效的HTTP URL.
编辑:根据要求,Zend URL示例:
http://localhost/index/index/param1/foo/param2/bar
所以我只是想把这个URL中的param1和param2.
编辑#2:我试过这个,但似乎不起作用:
$request = new Zend_Controller_Request_Http('http://localhost/home/test/param1/foo/param2/bar'); $front = Zend_Controller_Front::getInstance(); $route = new Zend_Rest_Route($front); var_dump($route->match($request));