(PHP 5 >= 5.5.0)
curl_file_create — CURLFile オブジェクトを作成します。
CURLFilecurl_file_create ( string $filename [, string $mimetype [, string $postname ]] )
ファイルをアップロードするための CURLFile オブジェクトを作成します。
ファイル名
ファイルをアップロードするパス
MIMEタイプ
ファイルのMIMEタイプ
役職名
ファイル名。
CURLFile オブジェクトを返します。
curl_file_create() の例
<?php/* http://example.com/upload.php:<?php var_dump($_FILES) ?>*/// cURL ハンドルを作成します $ch =curl_init('http://example.com/ Upload.php');//CURLFile オブジェクトを作成 $cfile = curl_file_create('cats.jpg','image/jpeg','test_name');//POST データを設定 $data = array('test_file' => $cfile);curl_setopt($ch, CURLOPT_POST,1);curl_setopt( $ch, CURLOPT_POSTFIELDS, $data);//実行ハンドルcurl_exec($ch);?>
上記のルーチンは次を出力します。
array(1) { ["test_file"]=> array(5) { ["name"]=> string(9) "test_name" ["type"]=> string(10) "image/jpeg" ["tmp_name "]=> string(14) "/tmp/phpPC9Kbx" ["error"]=> int(0) ["size"]=> int(46334) }}