通过图片URL下载图片到本地
$imgUrl = "http://offlintab.firefoxchina.cn/static/img/search/baidu_web.png";
ob_clean();
ob_start();
readfile($imgUrl);
$img = ob_get_contents();
fwrite($fp,$img);
ob_clean();
ob_start();
readfile($imgUrl);
$img = ob_get_contents();
ob_end_clean();
$imgName = "test.jpg"; //自定义图片名称
$savePath = "./test"; //自定图片存放路径
$fp = fopen($savePath.$imgName,"w");fwrite($fp,$img);
fclose($fp);
声明:该文观点仅代表作者本人,入门客AI创业平台信息发布平台仅提供信息存储空间服务,如有疑问请联系rumenke@qq.com。
- 上一篇:没有了
- 下一篇:没有了
