We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
$this->request->getPut()
Similar to getPost() or getQuery() http://docs.phalconphp.com/en/latest/reference/request.html#accessing-the-request-from-controllers
Thx
The text was updated successfully, but these errors were encountered:
If your put data is in the form of query string:
$put = array(); parse_str($this->request->getRawBody() , $put);
If your put data is JSON, use json_decode($this->request->getRawBody()) instead
json_decode($this->request->getRawBody())
Sorry, something went wrong.
Merge pull request #1403 from dreamsxin/put
4d92fe9
Fix #680 add getPut/hasPut for \Phalcon\Http\Request
c070cbb
No branches or pull requests
Hello,
Similar to getPost() or getQuery()
http://docs.phalconphp.com/en/latest/reference/request.html#accessing-the-request-from-controllers
Thx
The text was updated successfully, but these errors were encountered: