로 컬 로 사진 다운로드

822 단어 PHP
하나.  CURL 사진 다운로드
$url='http://qqqrenwu.oss-cn-hangzhou.aliyuncs.com/images/20190530/3762098730276434.jpg';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
$file = curl_exec($ch);
curl_close($ch);
$resource = fopen('/2.png', 'a');
fwrite($resource, $file);
fclose($resource);   

//    
return '/2.png';

둘째.  file_get_contents()  방법.
설명:그림 을 다운로드 하여 로 컬 에 저장 하고 속도 가 첫 번 째 방법 보다 느 립 니 다.첫 번 째 방법 을 추천 합 니 다.
//        
$url='http://qqqrenwucs.com/images/20190530/3762098730276434.jpg';
$content = file_get_contents($url);
file_put_contents('./poster/a1.png', $content);

//    
return './poster/a1.png';

좋은 웹페이지 즐겨찾기