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

这篇文章主要介绍了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. $img_array = array();
  23. $img_path = realpath("../../../upfile/news/").'/'.date("y/m/d/"); //采集远程图片保存地址
  24. //die($img_path);
  25. $img_rpath='/upfile/news/'.date("y/m/d/"); //设置访问地址
  26. $body = stripslashes(strtolower($body));
  27. preg_match_all("/(src|src)=["|'| ]{0,}(http://(.*).(gif|jpg|jpeg|png))/isu",$body,$img_array);
  28. $img_array = array_unique($img_array[2]);
  29. foreach ($img_array as $key => $value) {
  30. $get_file = my_file_get_contents($value,60);
  31. $filetime = time();
  32. $filename = date("ymdhis",$filetime).rand(1,999).'.'.substr($value,-3,3);
  33. if(emptyempty($get_file)){
  34. @sleep(10);
  35. $get_file = my_file_get_contents($value,30);
  36. if(emptyempty($get_file)){
  37. $body = preg_replace("/".addcslashes($value,"/")."/isu", '/notfound.jpg', $body);
  38. continue;
  39. }
  40. }
  41. if(!emptyempty($get_file) ){
  42. if( mkdirs($img_path) )
  43. {
  44. $fp = fopen($img_path.$filename,"w");
  45. if(fwrite($fp,$get_file)){
  46. $body = preg_replace("/".addcslashes($value,"/")."/isu", $img_rpath.$filename, $body);
  47. }
  48. fclose($fp);
  49. @sleep(6);
  50. }
  51. }
  52. }
  53. $body =str_replace("<img","<img ",$body);
  54. return $body;
  55. }
  56. function mkdirs($dir)
  57. {
  58. if(!is_dir($dir)){
  59. if(!mkdirs(dirname($dir))){
  60. return false;}
  61. if(!mkdir($dir,0777)){
  62. return false;}
  63. }
  64. return true;
  65. }
  66. //用法如下:
  67. $str ='fasfsdafsa<img src=http://filesimg.xxxx.com/2010/03/2010062300391582.jpg />';
  68. echo get_remote($str,'图片');