Retrieves parameters from the body.
Description
These are the parameters you’d typically find in $_POST
.
Source
public function get_body_params() {
return $this->params['POST'];
}
Changelog
Version | Description |
---|---|
4.4.0 | Introduced. |
Retrieves parameters from the body.
These are the parameters you’d typically find in $_POST
.
public function get_body_params() {
return $this->params['POST'];
}
Version | Description |
---|---|
4.4.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.