CURLFile クラス

(PHP 5 >= 5.5.0, PHP 7)

はじめに

CURLOPT_POSTFIELDS でファイルのアップロードをするには、 CURLFile を使わなければいけません。

クラス概要

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 タイプ (デフォルトは application/octet-stream)。

postname

アップロードするデータの中のファイルの名前 (デフォルトは name プロパティ)。

参考

目次