码迷,mamicode.com
首页 > 其他好文 > 详细

抓取远程图片到本地,你会用什么函数?

时间:2017-03-02 20:33:55      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:log   blog   抓取   www   函数   tac   content   sch   极速   

方式有:

<?php 
$img = file_get_contents(‘http://www.xfcodes.com/ img/baidu_logo.gif‘); 
file_put_contents(‘1.gif‘,$img); 
echo ‘<img src="1.gif">‘; 

这段抓取远程图片至本地在运行中360极速、火狐、谷歌没有出现错误,可以正常运行。

另外还有:

<?php
$pagecontent = file_get_contents(‘http://www.w3cschool.cn/attachments/day_170216/201702162023331045.png‘);
echo $pagecontent;
?>

该段代码在360极速浏览器中运行没有出现错误,但是在火狐、谷歌浏览器中出现了“乱码”。

抓取远程图片到本地,你会用什么函数?

标签:log   blog   抓取   www   函数   tac   content   sch   极速   

原文地址:http://www.cnblogs.com/gengyi/p/6492403.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!