Home > php教程 > php手册 > 从文章中提取图片,把图片保存到本地,自动提取缩略图

从文章中提取图片,把图片保存到本地,自动提取缩略图

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-10 15:11:47
Original
945 people have browsed it

开发二代旅游网站程序和CMS的时候,有一个需求,就是从网上复制的内容,里面包含图片的,需要对把图片提取出来,并且保存到本地,并且把图片的URL地址本地化,以下是实现的代码。
开发二代旅游网站程序和CMS的时候,有一个需求,就是从网上复制的内容,里面包含图片的,需要对把图片提取出来,并且保存到本地,并且把图片的URL地址本地化,以下是实现的代码,功能和效果可以参考二代旅游CMS官网(http://www.erdaicms.com):

/* 远程图片本地化 $body为html原内容 */<br> function auto_save_image($body){<br>     <br>     <br>         $img_array = explode('&',$body);<br>         $img_array = array();<br>         preg_match_all("/(src)=[\"|\'| ]{0,}(http:\/\/(.*)\.(gif|jpg|jpeg|bmp|png|JPEG|GIF|PNG))[\"|\'| ]{0,}/isU", $body, $img_array);<br>         $img_array = array_unique($img_array[2]);//也可以自动匹配<br>     <br>     <br>         set_time_limit(0);<br>         $imgPath = "Uploads/article/".date("Y-m-d")."/";<br>         $milliSecond = strftime("%H%M%S",time());<br>         if(!is_dir($imgPath)) @mkdir($imgPath,0777);<br>         foreach($img_array as $key =>$value)<br>         {<br>                 $value = trim($value);<br>                 $get_file = @file_get_contents($value);<br>                 <br>                 <br>             <br>                 $rndFileName = $imgPath."/".$milliSecond.$key.".".substr($value,-3,3);<br>                 if($get_file)<br>                 {<br>                         $fp = @fopen($rndFileName,"w");<br>                         @fwrite($fp,$get_file);<br>                         @fclose($fp);<br>                 }<br>                 $body = @ereg_replace($value, '/'.$rndFileName, $body);<br>         }<br>      <br>         return $body;<br>     }/* 提取图片数组 */function auto_return_image($body){<br>     <br>         $img_array = explode('&',$body);<br>         $img_array = array();<br>         preg_match_all("/(src)=[\"|\'| ]{0,}(\/(.*)\.(gif|jpg|jpeg|bmp|png|JPEG|GIF|PNG))[\"|\'| ]{0,}/isU", $body, $img_array);<br>         $img_array = array_unique($img_array[2]);//也可以自动匹配<br>         <br>         return  $img_array;<br> }最终效果如下:
从文章中提取图片,把图片保存到本地,自动提取缩略图

附件 1.png ( 10.84 KB 下载:13 次 )

AD:真正免费,域名+虚机+企业邮箱=0元

source:php.cn
Statement of this Website
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
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template