问题
使用PHP在更改图像之前和之后使用相同的URL下载远程图像,即使源不同,也要下载相同的照片。某处图像正在被缓存。
问题不在于浏览器缓存,因为我在通过FTP复制后直接通过Windows资源管理器查看照片。
示例
下午1:00:下载照片网址A - >下载照片A
下午1:30:照片A更改为照片B,但照片网址保持不变
下午2:00:再次下载照片网址 - >下载照片A(但应该是照片B)
我的下载脚本
function resampimagejpg( $forcedwidth, $forcedheight, $sourcefile, $destfile )
{
$fw = $forcedwidth;
$fh = $forcedheight;
$is = getimagesize( $sourcefile );
if( $is[0] >= $is[1] )
{
$orientation = 0;
}
else
{
$orientation = 1;
$fw = $forcedheight;
$fh = $forcedwidth;
}
if ( $is[0] > $fw || $is[1] > $fh )
{
if( ( $is[0] - $fw ) >= ( $is[1] - $fh ) )
{
$iw = $fw;
$ih = ( $fw / $is[0] ) * $is[1];
}
else
{
$ih = $fh;
$iw = ( $ih / $is[1] ) * $is[0];
}
$t = 1;
}
else
{
$iw = $is[0];
$ih = $is[1];
$t = 2;
}
if ( $t == 1 )
{
$img_src = imagecreatefromjpeg( $sourcefile );
$img_dst = imagecreatetruecolor( $iw, $ih );
imagecopyresampled( $img_dst, $img_src, 0, 0, 0, 0, $iw, $ih, $is[0], $is[1] );
if( !imagejpeg( $img_dst, $destfile, 95 ) )
{
exit( );
}
return true;
}
else if ( $t == 2 )
{
copy( $sourcefile, $destfile );
return true;
}
}
答案 0 :(得分:1)
Apache可以缓存图像,这取决于设置。这同样适用于浏览器。
绕过某个资产的缓存最简单的方法是在末尾添加一个(合理的......)唯一查询字符串,例如时间戳:
// load image always, assuming output to html
<img src="/path/to/image.jpg?<?php echo time(); ?>">
请注意,time()
并非完全唯一,它有效地将缓存限制为1秒......