建立新文件夹并保存远程图片

为什么80%的码农都做不了架构师?>>>   hot3.png

  1.     $url = 'http://mf1905.com/upload/video_img/df3074c98ec5124ad47c52ff59f74e04_middle.jpeg';  
  2.   
  3.     function http_get_data($url) {  
  4.           
  5.         $ch = curl_init ();  
  6.         curl_setopt ( $ch, CURLOPT_CUSTOMREQUEST, 'GET' );  
  7.         curl_setopt ( $ch, CURLOPT_SSL_VERIFYPEER, false );  
  8.         curl_setopt ( $ch, CURLOPT_URL, $url );  
  9.         ob_start ();  
  10.         curl_exec ( $ch );  
  11.         $return_content = ob_get_contents ();  
  12.         ob_end_clean ();  
  13.           
  14.         $return_code = curl_getinfo ( $ch, CURLINFO_HTTP_CODE );  
  15.         return $return_content;  
  16.     }  
  17.       
  18.     $return_content = http_get_data($url);    
  19.     $dir=dirname('文件路径');
  20.             echo $dir;

                if(!file_exists($dir)){

                    $re = mkdir($dir,0777);

                }            

  21.     $filename = $dir. '/test.jpg';  
  22.     $fp= @fopen($filename,"a"); //将文件绑定到流    
  23.     fwrite($fp,$return_content); //写入文件  

转载于:https://my.oschina.net/linxb/blog/672102

你可能感兴趣的:(建立新文件夹并保存远程图片)