开发者

Zend framework's getRequest()->getQuery() won't bring query string on localhost

开发者 https://www.devze.com 2023-01-17 00:41 出处:网络
I have the following code, which works fine on live site开发者_开发技巧, but not on localhost.

I have the following code, which works fine on live site开发者_开发技巧, but not on localhost.

$status = $this->getRequest()->getQuery('status');

I have a URL like this:

http://localhost:888//questions/ask?status=10

I printed the value of status, which is always nil. I am new to Zend framework and could not find a solution to this on net, looks strange to me. Any thoughts? Thanks.

[FIXED]

I had wrong RewriteRule that caused the problem. There was an unwanted '?' after index.php in RewriteRule line. It was my mistake I added this, because other frameworks like CodeIgniter user '?' in RewriteRules. The corrected RewriteRule line is:

RewriteRule ^(.*)$ /index.php/$1 [L]

I wonder if I can choose this as accepted answer.. :-)


I usually use this

$status = $this->getRequest()->getParam('status');

// or
$status = $this->getRequest()->getParams();

I assume that you have a Questions Controller Ask Action.
Here is the documentation about Zend's request


For those looking for the solution to ZF2 - look at this post, helped me out dramatically. It even includes the reference to a phenomenal plugin to make this easier (as the very least, in understanding the routes/requests/params, etc...)

Getting $_GET parameters from route in Zend Framework 2

Also, in this post SO post

How to access route, post, get etc. parameters in Zend Framework 2

In short, tho -

    $this->getRequest()->getRequest('name', 'default');
    $this->getEvent()->getRouteMatch()->getParam('name', 'default');
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号