Home  >  Article  >  Backend Development  >  PHP downloads remote image instances through curl

PHP downloads remote image instances through curl

WBOY
WBOYOriginal
2016-07-29 09:08:51945browse
$url = 'http://mf1905.com/upload/video_img/df3074c98ec5124ad47c52ff59f74e04_middle.jpeg';  
  
    function http_get_data($url) {  
          
        $ch = curl_init ();  
        curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, 'GET' );  
        curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );  
        curl_setopt ( $ch, CURLOPT_URL, $url );  
        ob_start ();  
        curl_exec ( $ch );  
        $return_content = ob_get_contents ();  
        ob_end_clean ();  
          
        $return_code = curl_getinfo ( $ch, CURLINFO_HTTP_CODE );  
        return $return_content;  
    }  
      
    $return_content = http_get_data($url);  
    $filename = 'test.jpg';  
    $fp= @fopen($filename,"a"); //将文件绑定到流 ??   
    fwrite($fp,$return_content); //写入文件 

The above introduces the example of PHP downloading remote images through curl, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn