cURL
PHP Manual

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

プロパティ

name

アップロードするファイルの名前。

mime

ファイルの MIME タイプ (デフォルトは application/octet-stream)。

postname

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

参考

目次


cURL
PHP Manual