[PHP] Curl 을 이용하여 파일 다운로드
- 01-19
- 5,673 회
- 0 건
저장할 파일명 : $file
다운로드 받을 주소 : $url
[code]
$file = './abc.txt';
$url = 'https://abc.com/abc.txt';
$fp = fopen($data_dir.'/'.$filename, 'wb');
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_TIMEOUT, 60);
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
curl_exec($ch);
curl_close($ch);
fclose($fp);
[/code]