if (is_temps()) {
clear_all_files();
$sql="update ".$ecs->table('shop_config') ."set value=".time()." where code='"."last_clear_time '";
$db->query($sql);
}
function is_temps()
{
if(time()-$_CFG['last_clear_time']<10000)
{
return(false);
}
else
{
return(true);
}}
其中10000为间隔时间 单位秒
INSERT INTO `ecs_shop_config` VALUES (65535, 10, 'last_clear_time', 'text', '', '', '1274090777', 1);
表前缀更改为自己的版权声明: 本站资源均来自互联网或会员发布,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!
转载请注明: ecshop实现自动更新缓存的方法