<?php include "CacheBlocks.php"; $Cache = new CacheBlocks("cache/", 360); //$Cache->SetVerbose(true); $Cache->SetTtl(360); if (!$Cache->Start("cache2")) { ?> <table> <?php for ($i = 0; $i < 20; $i++) { echo "<tr><td>Item " . $i . "</td></tr>"; } ?> </table> <?php } echo $Cache->Stop();
<?php // Nap thu vien cache include "CacheBlocks.php"; // Goi clas cache voi cac thong so nhu sau // cache/ = ten thu muc luu file cache // 10 = thoi gian luu // luu y tao thu muc cache/ ngang hang voi file CacheBlocks.php truoc $Cache = new CacheBlocks("cache/", 10); if (!($string = $Cache->Load("ten-file-cache-se-duoc-luu"))) { $string = ""; for ($i = 0; $i < 10000; $i++) { $string .= "Item" . $i . "<br />"; } $Cache->Save($string, "ten-file-cache-se-duoc-luu"); } echo $string;