本文实现下载远程图片,包含没有后缀的文件下载。对下载文件指定格式,保存到本地服务器。
<?php //文件下载到本地方法 function download($path=''){ $url = str_replace('"','',$path); header('Content-type: application/jpg'); //设置文件的类型 $filename =time().".jpg"; //文件名 $savePath = public_path().'uploads/'; //存放目录(可以换成自己的目录) header('Content-Disposition: attachment; filename="'.$filename.'"'); file_put_contents($savePath.$filename, fopen($path, 'r')); return $filename; } //使用方法: $imgUrl = 'https://tpc.googlesyndication.com/simgad/12638394706798940832?sqp=4sqPyQQ7QjkqNxABHQAAtEIgASgBMAk4A0DwkwlYAWBfcAKAAQGIAQGdAQAAgD-oAQGwAYCt4gS4AV_FAS2ynT4&rs=AOga4qnzdSKc_MghSF_y2QrUnNV6-Y67FQ'; download($imgUrl); ?>
文章评论(0)