POSTリクエストを生成しています:
$data['v'] = '2';
$data['file'] = gz compressed data
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_POST, 1);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$content = curl_exec($ch);
この後、「ファイル」フィールドは失われます - サーバーに到着しません。他のすべてのフィールドは到着します。私に何ができる?