使用PHP从远程服务器获取并保存/缓存图像
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用PHP从远程服务器获取并保存/缓存图像相关的知识,希望对你有一定的参考价值。
function cache_image($image_url){ //replace with your cache directory $image_path = 'path/to/cache/dir/'; //get the name of the file //make sure its an image if($extension=="gif"||$extension=="jpg"||$extension=="png"){ //get the remote image //save it } } //usage //cache_image("http://www.flickr.com/someimage.jpg");
以上是关于使用PHP从远程服务器获取并保存/缓存图像的主要内容,如果未能解决你的问题,请参考以下文章