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 ( void ) : string
public getMimeType ( void ) : string
public getPostFilename ( void ) : string
public setMimeType ( string $mime ) : void
public setPostFilename ( string $postname ) : void
public __wakeup ( void ) : void
}

属性

name

待上传文件的名称

mime

文件的 MIME type(默认是application/octet-stream)。

postname

上传数据中的文件名称(默认为属性 name )。

参见

Table of Contents