CURLFile::__construct
curl_file_create
CURLFile オブジェクトを作る
&reftitle.description;
&style.oop;
public CURLFile::__construct
stringfilename
stringnullmime_type&null;
stringnullposted_filename&null;
&style.procedural;
CURLFilecurl_file_create
stringfilename
stringnullmime_type&null;
stringnullposted_filename&null;
CURLFile オブジェクトを作ります。これは、CURLOPT_POSTFIELDS
でファイルをアップロードするときに使います。
&reftitle.parameters;
filename
アップロードするファイルへのパス。
mime_type
ファイルの Mimetype。
posted_filename
アップロードデータの中で使うファイルの名前。
&reftitle.returnvalues;
CURLFile オブジェクトを返します。
&reftitle.changelog;
&Version;
&Description;
8.0.0
mime_type と posted_filename
は nullable になりました。
これより前のバージョンでは、デフォルト値が 0 でした。
&reftitle.examples;
CURLFile::__construct の例
&style.oop;
*/
// cURL ハンドルを作ります
$ch = curl_init('http://example.com/upload.php');
// CURLFile オブジェクトを作ります
$cfile = new CURLFile('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);
?>
]]>
&style.procedural;
*/
// 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);
?>
]]>
&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)
}
}
]]>
CURLFile::__construct で、複数のファイルをアップロードする例
&style.oop;
new CURLFile(realpath('first-file.jpg'), 'image/jpeg'),
'blob[1]' => new CURLFile(realpath('second-file.txt'), 'text/plain'),
'blob[2]' => new CURLFile(realpath('third-file.exe'), 'application/octet-stream'),
]);
curl_setopt($request, CURLOPT_RETURNTRANSFER, true);
echo curl_exec($request);
var_dump(curl_getinfo($request));
curl_close($request);
]]>
&style.procedural;
curl_file_create(realpath('first-file.jpg'), 'image/jpeg'),
'blob[1]' => curl_file_create(realpath('second-file.txt'), 'text/plain'),
'blob[2]' => curl_file_create(realpath('third-file.exe'), 'application/octet-stream'),
]);
curl_setopt($request, CURLOPT_RETURNTRANSFER, true);
echo curl_exec($request);
var_dump(curl_getinfo($request));
curl_close($request);
]]>
&example.outputs;
string(31) "http://www.example.com/upload.php"
["content_type"]=>
string(24) "text/html; charset=UTF-8"
["http_code"]=>
int(200)
["header_size"]=>
int(198)
["request_size"]=>
int(196)
["filetime"]=>
int(-1)
["ssl_verify_result"]=>
int(0)
["redirect_count"]=>
int(0)
["total_time"]=>
float(0.060062)
["namelookup_time"]=>
float(0.028575)
["connect_time"]=>
float(0.029011)
["pretransfer_time"]=>
float(0.029121)
["size_upload"]=>
float(3230730)
["size_download"]=>
float(811)
["speed_download"]=>
float(13516)
["speed_upload"]=>
float(53845500)
["download_content_length"]=>
float(811)
["upload_content_length"]=>
float(3230730)
["starttransfer_time"]=>
float(0.030355)
["redirect_time"]=>
float(0)
["redirect_url"]=>
string(0) ""
["primary_ip"]=>
string(13) "0.0.0.0"
["certinfo"]=>
array(0) {
}
["primary_port"]=>
int(80)
["local_ip"]=>
string(12) "0.0.0.0"
["local_port"]=>
int(34856)
}
]]>
&reftitle.seealso;
curl_setopt