逝去的青春
php实现远程附件本地化
2012-12-16 jao



php实现远程附件本地化,只适合绝对路径的附件
  1. <?php


  2. /* 


  3. 缺陷:如果网页中的图片路径不是绝对路径,就无法抓取 


  4. */  


  5. set_time_limit(0);//抓取不受时间限制  


  6.   


  7. function get_pic($pic_url) {  


  8.     //获取图片二进制流  


  9.     $data=CurlGet($pic_url);  


  10.   


  11.     /*利用正则表达式得到图片链接*/  


  12.     $pattern_src = '/<[img|IMG].*?src=[\'|\"](.*?(?:[\.gif|\.jpg]))[\'|\"].*?[\/]?>/is';  


  13.     $num = preg_match_all($pattern_src, $data, $match_src);  


  14.     $arr_src=$match_src[1];//获得图片数组  


  15.       


  16.     get_name($arr_src);  


  17.       


  18.     echo "本地化完毕!!!";  


  19.     return 0;  


  20. }  


  21.   


  22. /*得到图片类型,并将其保存到与该文件同一目录*/  


  23. function get_name($pic_arr)  


  24. {  


  25.     //图片类型  


  26.     $pattern_type = '/(\.(jpg|bmp|jpeg|gif|png))/is';      


  27.       


  28.     foreach($pic_arr as $pic_item){//循环取出每幅图的地址  


  29.         $num = preg_match_all($pattern_type, $pic_item, $match_type);  


  30.         $pic_name = get_unique().$match_type[1][0];//改时微秒时间戳命名  


  31.         //以流的形式保存图片  


  32.         $write_fd = @fopen($pic_name,"wb");          


  33.         @fwrite($write_fd, CurlGet($pic_item));  


  34.         @fclose($write_fd);  


  35.     }  


  36.     return 0;  


  37. }  


  38.   


  39. //通过微秒时间获得唯一ID  


  40. function get_unique(){  


  41.     list($msec, $sec) = explode(" ",microtime());  


  42.     return $sec.intval($msec*1000000);  


  43. }  


  44.   


  45. //抓取网页内容  


  46. function CurlGet($url){   


  47.     $url=str_replace('&','&',$url);  


  48.     $curl = curl_init();  


  49.     curl_setopt($curl, CURLOPT_URL, $url);  


  50.     curl_setopt($curl, CURLOPT_HEADER, false);  


  51.       


  52.     //curl_setopt($curl, CURLOPT_REFERER,$url);  


  53.     curl_setopt($curl, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 6.0; SeaPort/1.2; Windows NT 5.1; SV1; InfoPath.2)");  


  54.     curl_setopt($curl, CURLOPT_COOKIEJAR, 'cookie.txt');  


  55.     curl_setopt($curl, CURLOPT_COOKIEFILE, 'cookie.txt');  


  56.     curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);  


  57.     curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 0);  


  58.     $values = curl_exec($curl);  


  59.     curl_close($curl);  


  60.     return $values;  


  61. }  





  62. //运用:


  63. $URL='http://www.baidu.com/';//任意网址  


  64. get_pic($URL);  


  65. ?>