We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a75ae2 commit 72fd09fCopy full SHA for 72fd09f
ServerRequest.php
@@ -195,6 +195,9 @@ public function getParsedBody(): null|array|object
195
case "application/x-www-form-urlencoded":
196
parse_str($contents, $this->parsedBody);
197
break;
198
+ case "multipart/form-data":
199
+ $this->parsedBody = $_POST;
200
+ break;
201
case "application/json":
202
$this->parsedBody = json_decode($contents, true);
203
0 commit comments