Cache d'image

Cache d'image - PHP - Programmation

Marsh Posté le 18-01-2011 à 11:45:21    

Salut,
 
vous avez déjà joué avec $_SERVER['HTTP_IF_MODIFIED_SINCE'] pour faire du cache d'image en php ?
 
J'ai le code suivant :
 

Code :
  1. if ((file_exists($dest_image) &&
  2.             (time() - filemtime($dest_image) >= 86400))
  3.         || !file_exists($dest_image)) {
  4.     generate_image($dest_image, $start_color, $end_color, $direction);
  5. } else {
  6.     $image = DOC_utils::file_get_contents($dest_image);
  7.     echo $image;
  8. }
  9. $last_modified_time = filemtime($dest_image);
  10. $etag = md5_file($dest_image);
  11. header('Content-type: image/png');
  12. header("Last-Modified: ".gmdate("D, d M Y H:i:s", $last_modified_time)." GMT" );
  13. header("Etag: $etag" );
  14. if (@strtotime($_SERVER['HTTP_IF_MODIFIED_SINCE']) == $last_modified_time ) {
  15.     header("HTTP/1.1 304 Not Modified" );
  16.     exit;
  17. }


 
Et allez savoir pourquoi parfois j'ai une fenêtre qui me propose d'enregistrer mon script.php sur mon ordi.
Une idée ?
 
Un problème de configuration serveur ?

Reply

Marsh Posté le 18-01-2011 à 11:45:21   

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed