0
這是我使用的網址:的Zend_Controller_Request_Http :: getQuery返回NULL
http://my-zend-application.example/api/amenity/index/id/1
這主要指:
module => api
controller => amenity
action => index
id => 1
但是當我做:
var_dump($_GET, $request->getQuery('id'));
我得到一個空數組和NULL。 URL中的id參數不應該在$ _GET中?