Php/docs/curlfile.construct
CURLFile::__construct
curl_file_create
(PHP 5 >= 5.5.0, PHP 7)
CURLFile::__construct -- curl_file_create — 创建 CURLFile 对象
说明
面向对象风格
public CURLFile::__construct
( string $filename
[, string $mimetype
[, string $postname
]] )
过程化风格
curl_file_create
( string $filename
[, string $mimetype
[, string $postname
]] ) : CURLFile
创建 CURLFile 对象,使用 CURLOPT_POSTFIELDS 选项上传文件。
参数
filename- 被上传文件的 路径。
mimetype- 被上传文件的 MIME 类型。
postname- 上传数据里面的文件名。
范例
Example #1 CURLFile::__construct() 示例
面向对象风格
<?php/* http://example.com/upload.php:<?php var_dump($_FILES); ?>*/// Create a cURL handle$ch = curl_init('http://example.com/upload.php');// Create a CURLFile object$cfile = new CURLFile('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 handlecurl_exec($ch);?>
过程化风格
<?php/* http://example.com/upload.php:<?php var_dump($_FILES); ?>*/// 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 handlecurl_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)
}
}