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

php 保留远程图片到本地

程序员文章站 2022-05-28 20:51:00
...
php 保存远程图片到本地
    

第一种: 精确型

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核实处理。

相关文章

相关视频