Php/docs/class.curlfile

来自菜鸟教程
跳转至:导航、​搜索

(PHP 5 >= 5.5.0, PHP 7)

简介

CURLFile 应该与选项 CURLOPT_POSTFIELDS 一同使用用于上传文件。


类摘要


CURLFile {

/* 属性 */

public $name

public $mime

public $postname

/* 方法 */

public __construct ( string $filename [, string $mimetype [, string $postname ]] )

public getFilename ( ) : string

public getMimeType ( ) : string

public getPostFilename ( ) : string

public setMimeType ( string $mime ) : void

public setPostFilename ( string $postname ) : void

}

属性

name
待上传文件的名称
mime
文件的 MIME type(默认是application/octet-stream)。
postname
上传数据中的文件名称(默认为属性 name )。


参见


Table of Contents