PHP中用header图片地址 简单隐藏图片源地址
程序员文章站
2023-08-24 09:23:28
复制代码 代码如下:
<?php
$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;
?>
调用它类似这样:
<img src="img.php?path=x/x/xtest.gif">
复制代码 代码如下:
<?php
$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;
?>
调用它类似这样:
复制代码 代码如下:
<img src="img.php?path=x/x/xtest.gif">