PHP 緩衝類

來源:互聯網
上載者:User
<無詳細內容>
  1. define('CACHE_ROOT', dirname(__FILE__).'/cache'); //緩衝存放目錄
  2. define('CACHE_TIME', 1800);//緩衝時間 單位秒
  3. define('CACHE_FIX','.html');
  4. $CacheName=md5($_SERVER['REQUEST_URI']).CACHE_FIX; //快取檔案名
  5. $CacheDir=CACHE_ROOT.'/'.substr($CacheName,0,1);//快取檔案存放目錄
  6. $CacheUrl=$CacheDir.'/'.$CacheName;//快取檔案的完整路徑
  7. //GET方式請求才緩衝,POST之後一般都希望看到最新的結果
  8. if($_SERVER['REQUEST_METHOD']=='GET'){
  9. //如果快取檔案存在,並且沒有到期,就把它讀出來。
  10. if(file_exists($CacheName) && time()-filemtime($CacheName) $fp=fopen($CacheName,'rb');
  11. fpassthru($fp);
  12. fclose($fp);
  13. exit;
  14. }
  15. //判斷檔案夾是否存在,不存在則建立
  16. elseif(!file_exists($CacheDir)){
  17. if(!file_exists(CACHE_ROOT)){
  18. mkdir(CACHE_ROOT,0777);
  19. chmod(CACHE_ROOT,0777);
  20. }
  21. mkdir($CacheDir,0777);
  22. chmod($CacheDir,0777);
  23. }
  24. //回呼函數,當程式結束時自動調用此函數
  25. function AutoCache($contents){
  26. global $CacheUrl;
  27. $fp=fopen($CacheUrl,'wb');
  28. fwrite($fp,$contents);
  29. fclose($fp);
  30. chmod($CacheUrl,0777);
  31. //產生新緩衝的同時,自動刪除所有的老緩衝,以節約空間,可忽略。
  32. //DelOldCache();
  33. return $contents;
  34. }
  35. function DelOldCache(){
  36. chdir(CACHE_ROOT);
  37. foreach (glob("*/*".CACHE_FIX) as $file){
  38. if(time()-filemtime($file)>CACHE_TIME)unlink($file);
  39. }
  40. }
  41. //回呼函數 auto_cache
  42. ob_start('AutoCache');
  43. }else{
  44. //不是GET的請求就刪除快取檔案。
  45. if(file_exists($CacheUrl))unlink($CacheUrl);
  46. }
  47. ?>
複製代碼
  • 聯繫我們

    該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

    如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.