Skip to content

Instantly share code, notes, and snippets.

@ivanrosolen
Created February 20, 2014 20:54
Show Gist options
  • Save ivanrosolen/9122993 to your computer and use it in GitHub Desktop.
Save ivanrosolen/9122993 to your computer and use it in GitHub Desktop.
cURL commands
curl_setopt($ch, CURLOPT_COOKIE, ...); // -b
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'PUT'); // -X
curl_setopt($ch, CURLOPT_BINARYTRANSFER, TRUE); // --data-binary
curl_setopt($ch, CURLOPT_HTTPHEADER, ['Content-Type: image/png']); // -H
curl_setopt($ch, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0); // -0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment