Một cơ chế lưu trữ cơ sở dữ liệu rất đơn giản, không có cơ sở dữ liệu:
$filename = 'cache.txt';
if (filemtime($filename) < time()-24*3600) { //older than a day
/*get your data*/
file_put_contents($filename, serialize(array($getCategories, $getTags, [...])); //your data in a serialized form
} else {
$data = unserialize(file_get_contents($filename));
list($getCategories, $getTags, [...]) = $data;
}
(Rõ ràng là bạn nên thay thế [...] bằng các biến giữ dữ liệu của bạn)