当前位置:首页 > PHP教程 > php图像处理 > 列表

php采集内容中带有图片地址的远程图片并保存的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-05 18:38:37 浏览: 评论:0 

这篇文章主要介绍了php采集内容中带有图片地址的远程图片并保存的方法,可实现采集并保存远程图片的功能,是非常实用的技巧,需要的朋友可以参考下

本文实例讲述了php采集内容中带有图片地址的远程图片并保存的方法,分享给大家供大家参考。具体实现方法如下:

  1. function my_file_get_contents($url$timeout=30) { 
  2.  if ( function_exists('curl_init') )  
  3.  { 
  4.   $ch = curl_init(); 
  5.   curl_setopt ($ch, curlopt_url, $url); 
  6.   curl_setopt ($ch, curlopt_returntransfer, 1); 
  7.   curl_setopt ($ch, curlopt_connecttimeout, $timeout); 
  8.   $file_contents = curl_exec($ch); 
  9.   curl_close($ch); 
  10.  }  
  11.  else if ( ini_get('allow_url_fopen') == 1 || strtolower(ini_get('allow_url_fopen')) == 'on' )    
  12.  { 
  13.   $file_contents = @file_get_contents($url); 
  14.  }  
  15.  else  
  16.  { 
  17.   $file_contents = ''
  18.  } 
  19.  return $file_contents
  20.   
  21. function get_remote($body,$title){ 
  22.  
  23.  $img_array = array();  
  24.  $img_path = realpath("../../../upfile/news/").'/'.date("y/m/d/"); //采集远程图片保存地址 
  25.  //die($img_path); 
  26.  $img_rpath='/upfile/news/'.date("y/m/d/");  //设置访问地址 
  27.  $body = stripslashes(strtolower($body));  
  28.  preg_match_all("/(src|src)=["|'| ]{0,}(http://(.*).(gif|jpg|jpeg|png))/isu",$body,$img_array);  
  29.  $img_array = array_unique($img_array[2]);  
  30.  foreach ($img_array as $key => $value) {  
  31.   $get_file = my_file_get_contents($value,60); 
  32.   $filetime = time();    
  33.   $filename = date("ymdhis",$filetime).rand(1,999).'.'.substr($value,-3,3);  
  34.   if(emptyempty($get_file)){ 
  35.    @sleep(10); 
  36.    $get_file = my_file_get_contents($value,30); 
  37.    if(emptyempty($get_file)){ 
  38.     $body = preg_replace("/".addcslashes($value,"/")."/isu"'/notfound.jpg'$body); 
  39.     continue
  40.     } 
  41.   } 
  42.   if(!emptyempty($get_file) ){ 
  43.    if( mkdirs($img_path) ) 
  44.    { 
  45.     $fp = fopen($img_path.$filename,"w"); 
  46.     if(fwrite($fp,$get_file)){          
  47.      $body = preg_replace("/".addcslashes($value,"/")."/isu"$img_rpath.$filename$body);  
  48.     } 
  49.     fclose($fp); 
  50.     @sleep(6); 
  51.    }    
  52.   }     
  53.  
  54.  } 
  55.  $body =str_replace("<img","<img ",$body);  
  56.  return $body
  57.  
  58.  
  59. function mkdirs($dir
  60.  if(!is_dir($dir)){ 
  61.   if(!mkdirs(dirname($dir))){ 
  62.    return false;} 
  63.   if(!mkdir($dir,0777)){ 
  64.    return false;} 
  65.  } 
  66.  return true; 
  67. //用法如下: 
  68.  
  69. $str ='fasfsdafsa<img src=http://filesimg.xxxx.com/2010/03/2010062300391582.jpg />'
  70. echo get_remote($str,'图片');

Tags: php采集远程图片

分享到: