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