欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php 封存远程图片到本地

程序员文章站 2022-05-21 15:37:13
...
php 保存远程图片到本地

显示远程图片:


?header('Content-Type:image/jpg'); echo file_get_contents("http://www.baidu.com/img/baidu_logo.gif"); ?>

?

第一种: 精确型

?

php 封存远程图片到本地
' : "false";

?

第二种:从文章中提取图片,并保存至本地

function getImg($str){  
    $str = stripslashes($str);  
    $pattern = "/php 封存远程图片到本地]*src\=\"(([^>]*)(jpg|gif|png|bmp|jpeg))\"/i";   //获取所有图片标签的全部信息  
    preg_match_all($pattern, $str, $matches);  
        
    return $matches[1];   //$matches[1]中就是所想匹配的结果,结果为数组  
}  
  
    $str =   
Two giant resource companies make up a big chunk of the Brazilian Bovespa. They are PetroBras (NYSE: PBR), with a market cap of $163.44 billion, and miner Vale (NYSE: VALE), which has a market cap of $178.95 billion. PBR shares have risen 1.47% thus far today and VALE is trading 0.77% higher at $34.03.  
php 封存远程图片到本地  
This article was originally published on Benzinga, and is republished here with permission.   
EOT;  
  
  
foreach( getImg($str) as $url)  
{  
    get_photo($url);  
}  
?
php 封存远程图片到本地

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频


网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • php 封存远程图片到本地
  • 专题推荐