curl_file_create Create a CURLFile object &reftitle.description; CURLFilecurl_file_create stringfilename stringmimetype stringpostname Creates a CURLFile object, used to upload a file with CURLOPT_POSTFIELDS. &reftitle.parameters; filename Path to the file which will be uploaded. mimetype Mimetype of the file. postname Name of the file. &reftitle.returnvalues; Returns a CURLFile object. &reftitle.examples; <function>curl_file_create</function> example */ // Create a cURL handle $ch = curl_init('http://example.com/upload.php'); // Create a CURLFile object $cfile = curl_file_create('cats.jpg','image/jpeg','test_name'); // Assign POST data $data = array('test_file' => $cfile); curl_setopt($ch, CURLOPT_POST,1); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); // Execute the handle curl_exec($ch); ?> ]]> &example.outputs; array(5) { ["name"]=> string(9) "test_name" ["type"]=> string(10) "image/jpeg" ["tmp_name"]=> string(14) "/tmp/phpPC9Kbx" ["error"]=> int(0) ["size"]=> int(46334) } } ]]> &reftitle.seealso; curl_setopt