関数・クラス解説
CURLFile::__construct
curl_file_create
version:PHP 5 >= 5.5.0, PHP 7 (公式)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
- ファイルの Mimetype。
- postname
- アップロードデータの中で使うファイルの名前。
返値
CURLFile オブジェクトを返します。
サンプル
例1 CURLFile::__construct() の例
オブジェクト指向型
/* http://example.com/upload.php:
*/// cURL ハンドルを作ります$ch = curl_init('http://example.com/upload.php');// CURLFile オブジェクトを作ります$cfile = new CURLFile('cats.jpg','image/jpeg','test_name');// POST データを設定します$data = array('test_file' => $cfile);curl_setopt($ch, CURLOPT_POST,1);curl_setopt($ch, CURLOPT_POSTFIELDS, $data);// このハンドルを実行しますcurl_exec($ch);?> 手続き型
/* http://example.com/upload.php:
*/// cURL ハンドルを作ります$ch = curl_init('http://example.com/upload.php');// CURLFile オブジェクトを作ります$cfile = curl_file_create('cats.jpg','image/jpeg','test_name');// POST データを設定します$data = array('test_file' => $cfile);curl_setopt($ch, CURLOPT_POST,1);curl_setopt($ch, CURLOPT_POSTFIELDS, $data);// このハンドルを実行しますcurl_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)
}
}
例2 CURLFile::__construct() で、複数のファイルをアップロードする例
オブジェクト指向型
<?php$request = curl_init('http://www.example.com/upload.php');curl_setopt($request, CURLOPT_POST, true);curl_setopt($request, CURLOPT_SAFE_UPLOAD, true); curl_setopt( $request, CURLOPT_POSTFIELDS, [ 'blob[0]' => new CURLFile(realpath('first-file.jpg'), 'image/jpeg'), 'blob[1]' => new CURLFile(realpath('second-file.txt'), 'text/plain'), 'blob[2]' => new CURLFile(realpath('third-file.exe'), 'application/octet-stream'), ] );curl_setopt($request, CURLOPT_RETURNTRANSFER, true);echo curl_exec($request);var_dump(curl_getinfo($request));curl_close($request); 手続き型
<?php// procedural$request = curl_init('http://www.example.com/upload.php');curl_setopt($request, CURLOPT_POST, true); curl_setopt($request, CURLOPT_SAFE_UPLOAD, true); curl_setopt( $request, CURLOPT_POSTFIELDS, [ 'blob[0]' => curl_file_create(realpath('first-file.jpg'), 'image/jpeg'), 'blob[1]' => curl_file_create(realpath('second-file.txt'), 'text/plain'), 'blob[2]' => curl_file_create(realpath('third-file.exe'), 'application/octet-stream'), ] );curl_setopt($request, CURLOPT_RETURNTRANSFER, true);echo curl_exec($request);var_dump(curl_getinfo($request));curl_close($request); 上の例の出力は以下となります。
array(26) {
["url"]=>
string(31) "http://www.example.com/upload.php"
["content_type"]=>
string(24) "text/html; charset=UTF-8"
["http_code"]=>
int(200)
["header_size"]=>
int(198)
["request_size"]=>
int(196)
["filetime"]=>
int(-1)
["ssl_verify_result"]=>
int(0)
["redirect_count"]=>
int(0)
["total_time"]=>
float(0.060062)
["namelookup_time"]=>
float(0.028575)
["connect_time"]=>
float(0.029011)
["pretransfer_time"]=>
float(0.029121)
["size_upload"]=>
float(3230730)
["size_download"]=>
float(811)
["speed_download"]=>
float(13516)
["speed_upload"]=>
float(53845500)
["download_content_length"]=>
float(811)
["upload_content_length"]=>
float(3230730)
["starttransfer_time"]=>
float(0.030355)
["redirect_time"]=>
float(0)
["redirect_url"]=>
string(0) ""
["primary_ip"]=>
string(13) "0.0.0.0"
["certinfo"]=>
array(0) {
}
["primary_port"]=>
int(80)
["local_ip"]=>
string(12) "0.0.0.0"
["local_port"]=>
int(34856)
}
参考
ワード検索
※入力キーワードが、関数名・説明文・タグに含まれるものを検索関数名アルファベット別
最終更新一覧
●stristr
大文字小文字を区別せず文字列を検索し、ヒット箇所以降(あるいは以前)の文字列を返却
●stripslashes
バックスラッシュでエスケープされた文字列から、バックスラッシュを取り除く
●stripos
大文字小文字を区別せずに文字列が最初に現れる位置を取得する
●stripcslashes
addcslashes() でクォートされた文字列をアンクォートする
●strip_tags
文字列から HTML と PHP のタグを除去して返却
●strcspn
指定した文字が最初に現れる位置を調べる
●strcoll
ロケールに基づいて2つの文字列を比較し同じか(あるいは大小)を判定する
●strcmp
2つの文字列を比較し同じか(あるいは大小)を判定する
●strchr
strstr() のエイリアス
●strcasecmp
2つの文字列を比較(大文字小文字を区別せず同じとみなす)
カテゴリー一覧
PHP の振る舞いの変更
音声フォーマットの操作
認証サービス
コマンドライン関連
圧縮およびアーカイブ
暗号
データベース関連
日付および時刻関連
ファイルシステム
自然言語および文字エンコーディング
画像処理および作成
メール関連
数学
テキスト以外の MIME 型
プロセス制御
その他の基本モジュール
その他のサービス
検索エンジン用の拡張モジュール
サーバー固有のモジュール
セッション関連
テキスト処理
変数・データ型関連
ウェブサービス
Windows 用のモジュール
XML 操作
GUI用の拡張モジュール