Função de cache php simples e prática
Autor:Eve Cole
Data da Última Atualização:2009-06-06 18:17:45
/**
* @Descrição: Saída do cache de arquivos
* @Parameter: $cachefile => arquivo de cache (caminho absoluto)
* @Parameter: $pertime => Intervalo de tempo para saída em cache
* @parâmetro: $sql => instrução sql
* @Parameter: $templatefile => Nome do arquivo de modelo (caminho absoluto)
**/
function __cache($cachefile,$pertime,$sql,$templatefile) {
$db global;
if(time() - @filemtime($cachefile) >= $pertime) {
$query = $db->query($sql);
while($r=$db->fetch($query)) {
$listadecache[] = $r;
}
inclua $templatefile.'.php';
$cacheserialize = serialize($cachelist);
file_put_contents($cachefile,$cacheserialize);
}outro{
$cachelist = unserialize(file_get_contents($cachefile));
inclua $templatefile.'.php';
}
}