PHP 動態網站變 靜態緩衝 加快網站訪問速度

來源:互聯網
上載者:User

有些php網站由於前期設計以及其它原因 
網站是純動態或者是大部分是動態,對資料庫的操作很頻繁. 
造成網站訪問速度很慢!想實現靜態,又沒有產生靜態功能. 
因為我寫了一個精簡的產生靜態程式.很簡單,一看就懂 
適合基本上所有系統 

要求 
1.系統支援php 
2.支援file_get_contents file_put_contents [也可以用同樣作用的函數替換] 
3.最好支援gzcompress 

使用方法 
1.下載下面分享的huncun.php檔案 
2.在網站根目錄建檔案夾huancun(或其它) 
3.複製huncun.php到huancun目錄下 
4.在huancun目錄下建檔案夾cache目錄 
5.在用網站公用檔案頭或都產生靜態網頁頭上 載入本檔案 
include("/huancun/huancun.php"); 
6.清空緩衝 參考http://www.oschina.net/code/snippet_202258_7018 

缺點 
1.使用本系統不能即時更新內容 必須清空緩衝後才能更新或者是到了設定的緩衝時間才會更新 
2.第一次訪問速度比較慢,因為沒有緩衝.第二次就是調用快取檔案,那時候就快了 
3.快取檔案占磁碟空間,建議伺服器或者空間比較大的使用.或者定期刪除快取檔案

 

<?php/*www.diyphp.net*www.php100.com*/if($_GET['phphuancun']!="true"){define("HC_PATH",dirname(__FILE__)."/cache/");define("HC_TIME",1);echo HC_getcache();exit;}function HC_getcache($iscache=''){$url="http://".$_SERVER['SERVER_NAME'].$_SERVER['REQUEST_URI'];$cacheurl=strpos($url,"?")?$url."&phphuancun=true":$url."?phphuancun=true";$cachename=HC_PATH.md5($url).".c"; $cachetime=$iscache?time()+1:time()-(HC_TIME * 60*60);if(file_exists($cachename) && filemtime($cachename)>=$cachetime){$return=file_get_contents($cachename);$data=function_exists(gzcompress)?@gzuncompress($return):$return;return unserialize($data);}else{$return=file_get_contents($cacheurl);HC_writecache($cachename,$return);return $return;} }function HC_writecache($name,$array){function_exists(gzcompress)?$return =gzcompress(serialize($array)):$return=serialize($array);@file_put_contents($name,$return);}?>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.