Skip to content

Instantly share code, notes, and snippets.

@christeredvartsen
Created March 6, 2012 16:50
Show Gist options
  • Save christeredvartsen/1987441 to your computer and use it in GitHub Desktop.
Save christeredvartsen/1987441 to your computer and use it in GitHub Desktop.
PUT with file_get_contents
file_get_contents($url, null, stream_context_create(array(
'http' => array(
'method' => 'PUT',
'content' => json_encode(array('foo' => 'bar')),
'header' => 'Content-type: application/x-www-form-urlencoded',
)
)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment