• 2025-01-14帝国cms实现数据库查询缓存方法
    <?phpfunctiongetCache($key){$cacheFile='cache/'.md5($key).'.json';//使用md5生成唯一的文件名if(file_exists($cacheFile)){$data=json_decode(file_get_contents($cacheFile),true);//检查缓存是否过期(例如,设置过期时间为