Skip to content

Instantly share code, notes, and snippets.

@vanaf1979
Last active April 15, 2024 10:41
Show Gist options
  • Save vanaf1979/73e95079fbf44edb906aa4e5e9af2c7d to your computer and use it in GitHub Desktop.
Save vanaf1979/73e95079fbf44edb906aa4e5e9af2c7d to your computer and use it in GitHub Desktop.
Snippet #007 Get and Post to remote Api with Php. https://since1979.dev/snippet-007-get-and-post-to-remote-api-with-php/
<?php
$response = do_remote_post('https://jsonplaceholder.typicode.com/posts/', [
'userId' => 1,
'title' => 'foo',
'body' => 'bar'
]);
var_dump($response);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment