<?php
/** 強制更新图片緩存
* @param Array $files 待更新的图片
* @param int $version 版本
* @edit www.jb200.com
*/
function force_reload_file($files=array(), $version=0){
$html = '';
if(!isset($_COOKIE['force_reload_page_'.$version])){ // 判断是否已更新过
setcookie('force_reload_page_'.$version, true, time()+2592000);
$html .= '<script type="text/
javascript">'."rn";
$html .= 'window.onload = function(){'."rn";
$html .= 'setTimeout(function(){window.location.reload(true); },1000);'."rn";
$html .= '}'."rn";
$html .= '</script>';
echo $html;
exit();
}else{ // 读取图片一次,针对chrome优化
if($files){
$html .= '<script type="text/javascript">'."rn";
$html .= "<!--rn";
for($i=0,$max=count($files); $i<$max; $i++){
$html .= 'var force_reload_file_'.$i.' =new Image()'."rn";
$html .= 'force_reload_file_'.$i.'.src="'.$files[$i].'"'."rn";
}
$html .= "-->rn";
$html .= '</script>';
}
}
return $html;
}
// 调用方法
$files = array(
'images/1.jpg',
'images/2.jpg',
'images/3.jpg',
'images/4.jpg'
);
$html = force_reload_file($files, 1); //更新缓存文件
echo $html;