Skip to content

Commit 95bd9f1

Browse files
author
Greg Bowler
authoredJul 3, 2023
feature: post data with formdata (#149)
closes #99
1 parent 6a0aa42 commit 95bd9f1

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed
 

‎example/02-post-request.php

+7-5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
require(implode(DIRECTORY_SEPARATOR, ["..", "vendor", "autoload.php"]));
33

44
use Gt\Fetch\Http;
5+
use Gt\Http\FormData;
56
use Gt\Http\Response;
67
use Gt\Json\JsonObject;
78

@@ -12,6 +13,11 @@
1213

1314
// Example: Post form data to the echo server.
1415

16+
$formData = new FormData();
17+
$formData->set("name", "Mark Zuckerberg");
18+
$formData->set("dob", "1984-05-14");
19+
$formData->set("email", "zuck@fb.com");
20+
1521
$http = new Http();
1622
$http->fetch("https://postman-echo.com/post", [
1723
// All of the request parameters can be passed directly here, or alternatively
@@ -20,11 +26,7 @@
2026
"headers" => [
2127
"Content-Type" => "application/x-www-form-urlencoded",
2228
],
23-
"body" => http_build_query([
24-
"name" => "Mark Zuckerberg",
25-
"dob" => "1984-05-14",
26-
"email" => "zuck@fb.com",
27-
]),
29+
"body" => $formData,
2830
])
2931
->then(function(Response $response) {
3032
if(!$response->ok) {

0 commit comments

Comments
 (0)