私は、この機能を使用して、ユーザーがPHPでのFacebookのプロフィール写真をダウンロードしようとしているPHP + CURLは
public static function downloadFile($url, $options = array())
{
if (!is_array($options))
$options = array();
$options = array_merge(array(
'connectionTimeout' => 5, // seconds
'timeout' => 10, // seconds
'sslVerifyPeer' => false,
'followLocation' => true, // if true, limit recursive redirection by
'maxRedirs' => 2, // setting value for "maxRedirs"
), $options);
// create a temporary file (we are assuming that we can write to the system's temporary directory)
$tempFileName = tempnam(sys_get_temp_dir(), '');
$fh = fopen($tempFileName, 'w');
$curl = curl_init($url);
curl_setopt($curl, CURLOPT_FILE, $fh);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, $options['connectionTimeout']);
curl_setopt($curl, CURLOPT_TIMEOUT, $options['timeout']);
curl_setopt($curl, CURLOPT_HEADER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, $options['sslVerifyPeer']);
curl_setopt($curl, CURLOPT_FOLLOWLOCATION, $options['followLocation']);
curl_setopt($curl, CURLOPT_MAXREDIRS, $options['maxRedirs']);
curl_exec($curl);
curl_close($curl);
fclose($fh);
return $tempFileName;
}
問題は、それがランダムな名前で/ tmpディレクトリ内のファイルを保存しています拡張なしで。どのように私は(私は、元の拡張で、より興味)ファイルの元の名前を取得することができます
ここで重要なことは、次のとおりです。私は、元からそれを得る傾けるよう
- urlは実際に画像にリダイレクトURL
- は、最終的なURLは、URLがイメージにリダイレクトする場合、あなたはまだヘッダからファイル名を取得することができるはずヘッダ