主页 > 编程资料 > PHP >
发布时间:2015-12-29 作者:网络 阅读:187次
复制代码 代码如下:
$path=$_GET["path"];       
$cacheimgname=str_replace("/","_",$path);       
$localimg="upimg/".$cacheimgname;       
if ((file_exists($localimg)))       
{       
$httpurl=$localimg;       
}       
else      
{       
$httpurl="http://www.imageserver.com/".$path;       
@copy($httpurl,$localimg);//缓存图片!       
}       
header("Locationhttpurl");       
exit;       
?>   

调用它类似这样:
复制代码 代码如下:
  
关键字词: