php自动采集内容中带有图片地址的远程图片
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-09 15:28:52 浏览: 评论:0
- function my_file_get_contents($url, $timeout=30) {
- if ( function_exists('curl_init') )
- {
- $ch = curl_init();
- curl_setopt ($ch, curlopt_url, $url);
- curl_setopt ($ch, curlopt_returntransfer, 1);
- curl_setopt ($ch, curlopt_connecttimeout, $timeout);
- $file_contents = curl_exec($ch);
- curl_close($ch);
- }
- else if ( ini_get('allow_url_fopen') == 1 || strtolower(ini_get('allow_url_fopen')) == 'on' )
- {
- $file_contents = @file_get_contents($url);
- }
- else
- {
- $file_contents = '';
- }
- return $file_contents;
- }
- 代码如下 复制代码
- function get_remote($body,$title){
- $img_array = array();
- $img_path = realpath("../../../upfile/news/").'/'.date("y/m/d/"); //采集远程图片保存地址
- //die($img_path);
- $img_rpath='/upfile/news/'.date("y/m/d/"); //设置访问地址
- $body = stripslashes(strtolower($body));
- preg_match_all("/(src|src)=["|'| ]{0,}(http://(.*).(gif|jpg|jpeg|png))/isu",$body,$img_array);
- $img_array = array_unique($img_array[2]);
- foreach ($img_array as $key => $value) {
- $get_file = my_file_get_contents($value,60);
- $filetime = time();
- $filename = date("ymdhis",$filetime).rand(1,999).'.'.substr($value,-3,3);
- if(emptyempty($get_file)){
- @sleep(10);
- $get_file = my_file_get_contents($value,30);
- if(emptyempty($get_file)){
- $body = preg_replace("/".addcslashes($value,"/")."/isu", '/notfound.jpg', $body);
- continue;
- }
- }
- if(!emptyempty($get_file) ){
- if( mkdirs($img_path) )
- {
- $fp = fopen($img_path.$filename,"w");
- if(fwrite($fp,$get_file)){
- $body = preg_replace("/".addcslashes($value,"/")."/isu", $img_rpath.$filename, $body);
- }
- fclose($fp);
- @sleep(6);
- }
- }
- }
- $body =str_replace("<img","<img ",$body);
- return $body;//开源代码phpfensi.com
- }
- function mkdirs($dir)
- {
- if(!is_dir($dir)){
- if(!mkdirs(dirname($dir))){
- return false;}
- if(!mkdir($dir,0777)){
- return false;}
- }
- return true;
- }
- $str ='fasfsdafsa<img src=http://filesimg.phpfensi.com/2010/03/2010062300391582.jpg />';
- echo get_remote($str,'图片');
Tags: php自动采集 php远程图片
- 上一篇:php堆排序实现原理与应用程序代码
- 下一篇:fck上传图片增加水印代码修改
相关文章
- ·PHP+Ajax远程图片抓取器下载的例子(2014-09-22)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)