php获取远程网站图片并保存本地
$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
php获取远程网站图片并保存本地
$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
相关课程