Source Code:
(back to article)
<?php $url = 'https://jsonplaceholder.typicode.com/posts'; $data = ['key1' => 'value1', 'key2' => 'value2']; $options = [ 'http' => [ 'header' => "Content-type: application/x-www-form-urlencoded\r\n", 'method' => 'POST', 'content' => http_build_query($data), ], ]; $context = stream_context_create($options); $result = file_get_contents($url, false, $context); if ($result === false) { /* Handle error */ } var_dump(json_decode($result, true));
Result:
Report an issue