php获取远程网站图片并保存本地
1
2
|
$image
=
file_get_contents
(
'http://www.php100.com/uploadfile/2013/1220/thumb_420_240_20131220014732896.jpg'
);
file_put_contents
(
'image.jpg'
,
$image
);
//Where to save the image
|
本文转自许琴 51CTO博客,原文链接:http://blog.51cto.com/xuqin/1349652,如需转载请自行联系原作者