Skip to content

Instantly share code, notes, and snippets.

@bladeofsteel
Created April 30, 2015 15:50
Show Gist options
  • Save bladeofsteel/cf75756b64706c914893 to your computer and use it in GitHub Desktop.
Save bladeofsteel/cf75756b64706c914893 to your computer and use it in GitHub Desktop.
File upload with curl and basic auth
<?php
$post = array('ext_param' => $value, 'file_name' => '@' . $file);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_POSTFIELDS, $post);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$result = curl_exec($ch);
curl_close($ch);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment