Skip to content

Instantly share code, notes, and snippets.

@JoelMarcey
Created October 16, 2014 22:21
Show Gist options
  • Select an option

  • Save JoelMarcey/ae01505b8a382ed02473 to your computer and use it in GitHub Desktop.

Select an option

Save JoelMarcey/ae01505b8a382ed02473 to your computer and use it in GitHub Desktop.
CURLFile
<?php
$file = new CurlFile(__DIR__. '/curl_testdata1.txt');
$ch = curl_init();
curl_setopt($ch, CURLOPT_POSTFIELDS, array("file" => $file));
curl_exec($ch);
var_dump($file->name);
var_dump($file->postname);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment