function storeCachedContent($filePath, $content)
{
return file_put_contents($filePath, $content);
}
function isCached($cacheFile, $expireTime = 360)
{
if(file_exists($cacheFile) && filemtime($cacheFile) > $expireTime){
return true;
}
return false;
}
function getCachedContent($cacheFile)
{
return @file_get_contents($cacheFile);
}
function store($file,$datas)
{
return file_put_contents($file,gzdeflate(json_encode($datas)));
}
function unstore($file)
{
return json_decode(gzinflate(file_get_contents($file)),true);
}