Guest User

Untitled

a guest
Dec 7th, 2016
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. $ch = curl_init($upload_url);
  2. $curlfile = curl_file_create(__DIR__.'1.jpg', 'multipart/form-data', 'file');
  3. $data = array("file"=>$curlfile);
  4. curl_setopt($ch, CURLOPT_POST, 1);
  5. curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
  6.  
  7. $content = curl_exec($ch);
Add Comment
Please, Sign In to add comment