好吧,正如标题中给出的那样,我想将我的php脚本生成的资源缓存在用户的浏览器上。我想这样做,因为我想动态地为服务器端的一些图像提供缩略图。我有这个.htaccess
文件,其中包含这些内容。
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^(.+)$ index.php?image_id=$1 [QSA,L]
index.php文件包含这些代码。
<?php
header('Last-Modified: ' .gmdate('D, d M Y H:i:s',time()-3600) . ' GMT');
$image_id=$_GET['image_id'];
$chunk= explode("/", $image_id);
$destination_height=$chunk[0];
$destination_width=$chunk[1];
$image=$chunk[2];
if(file_exists($image))
{
$extension=explode(".",$image);
$extension=end($extension);
switch ($extension) {
case "jpg":
$source_image= imagecreatefromjpeg($image);
break;
case "jpeg":
$source_image= imagecreatefromjpeg($image);
break;
case "gif":
$source_image= imagecreatefromgif($image);
break;
case "png":
$source_image= imagecreatefrompng($image);
break;
default:
break;
}
$source_height = imagesy($source_image);
$source_width = imagesx($source_image);
if($destination_height=="full")
{
$destination_height=$source_height;
}
if($destination_width=="full")
{
$destination_width=$source_width;
}
$destination_image= imagecreatetruecolor($destination_width, $destination_height);
$dst_x=0;
$dst_y=0;
$src_x=0;
$src_y=0;
imagecopyresized($destination_image,$source_image,$dst_x,$dst_y,$src_x,$src_y,$destination_width,$destination_height,$source_width,$source_height);
switch ($extension) {
case "jpg":
imagejpeg($destination_image);
header("content-type:image/jpeg");
break;
case "jpeg":
header("content-type:image/jpeg");
imagejpeg($destination_image);
break;
case "gif":
header("content-type:image/gif");
imagegif($destination_image);
break;
case "png":
header("content-type:image/png");
imagepng($destination_image);
break;
default:
break;
}
}
?>
即使在此之后,当我进入开发者模式并在Google Chrome上看到网络标签时,状态信息为:200 OK
如何缓存此脚本生成的所有图像?因为对于特定的URL,在这个实现中,内容永远不会改变,所以我想缓存图像。
任何形式的想法将不胜感激。感谢。
答案 0 :(得分:0)
使用此
file_put_contents($filename, $imagedata);
它会将图像写入服务器,因为你的htaccess文件只会运行图像生成,如果文件不存在,它只会写入一次文件,然后再提供缓存版本。