1. <tt id="5hhch"><source id="5hhch"></source></tt>
    1. <xmp id="5hhch"></xmp>

  2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

    <rp id="5hhch"></rp>
        <dfn id="5hhch"></dfn>

      1. php頁(yè)面緩存實(shí)現(xiàn)方法

        時(shí)間:2020-11-10 12:29:59 PHP 我要投稿

        php頁(yè)面緩存實(shí)現(xiàn)方法

          php頁(yè)面緩存實(shí)現(xiàn)方法可能很多PHP新手都不是很了解,下面給大家介紹php頁(yè)面緩存實(shí)現(xiàn)方法,一起來(lái)了解一下吧!

          php頁(yè)面緩存實(shí)現(xiàn)方法

          在php頁(yè)面緩存主要用到的是ob系列函數(shù),如ob_start(),ob_end_flush(),ob_get_contents(),但是更高級(jí)的緩存是不使用這些函數(shù)的,本文章最后一個(gè)實(shí)現(xiàn)就有講到,大家可參考一下。

          ob_start():頁(yè)面緩存開(kāi)始的標(biāo)志,此函數(shù)一下的內(nèi)容直至ob_end_flush()或者ob_end_clean()都保存在頁(yè)面緩存中;

          ob_get_contents():用來(lái)獲取頁(yè)面緩存中的內(nèi)容,獲取到以后呢,我們就可以想怎么處理這些內(nèi)容都行了,過(guò)濾字段啦,匹配內(nèi)容啦,都可以~~~ :)

          ob_end_flush():表示頁(yè)面緩存結(jié)束。并且經(jīng)我驗(yàn)證,緩存的內(nèi)容將輸出到當(dāng)前頁(yè)面上,也就是可以顯示緩存內(nèi)容。

          用此三個(gè)php函數(shù),就可以實(shí)現(xiàn)強(qiáng)大的`功能。如果數(shù)據(jù)庫(kù)查詢量較大,可以用cache來(lái)解決這個(gè)問(wèn)題。

          下面是編碼部分。

          1.初始化函數(shù),一般是設(shè)置頁(yè)面緩存路徑、緩存文件命名格式等,可按個(gè)人喜好自定義。這里用到的識(shí)別ID是經(jīng)加密的$_SERVER[REQUEST_URI]參數(shù)。這個(gè)函數(shù)中最后還有一個(gè)if判斷:若未過(guò)緩存期,則加載緩存文件,否則加載源文件。

          代碼如下

          function page_init()

          {

          $url = $_SERVER['REQUEST_URI'];//子url,該參數(shù)一般是唯一的

          $pageid = md5($url);

          $dir = str_replace('/','_',substr($_SERVER['SCRIPT_NAME'],1,-4));

          //目錄命名方式,如exp_index

          if(!file_exists($pd = PAGE_PATH.$dir.'/'))@mkdir($pd,0777) or die("$pd目錄創(chuàng)建失敗");

          //如cache/page/exp_index/

          define('PAGE_FILE',$pd.$pageid.'.html');

          //如cache/page/exp_index/cc8ef22b405566745ed21305dd248f0e.html

          $contents = file_get_contents(PAGE_FILE);//讀出

          if($contents && substr($contents, 13, 10) > time() )//對(duì)應(yīng)page_cache()函數(shù)中加上的自定義頭部

          {

          echo substr($contents, 27);

          exit(0);

          }

          return true;

          }

          2.頁(yè)面緩存函數(shù),這里使用到一個(gè)技巧:在緩存文件的內(nèi)容中加上一個(gè)頭部信息--過(guò)期時(shí)間,所以每次只需要對(duì)頭部中的過(guò)期時(shí)間和當(dāng)前時(shí)間進(jìn)行比較(在page_init()函數(shù)中進(jìn)行)就能判斷緩存是否過(guò)期了。

          代碼如下

          function page_cache($ttl = 0)

          {

          $ttl = $ttl ? $ttl : PAGE_TTL;//緩存時(shí)間,默認(rèn)3600s

          $contents = ob_get_contents();//從緩存中獲取內(nèi)容

          $contents = "<!--page_ttl:".(time() + $ttl)."-->n".$contents;

          //加上自定義頭部:過(guò)期時(shí)間=生成時(shí)間+緩存時(shí)間

          file_put_contents(PAGE_FILE, $contents);//寫(xiě)入緩存文件中

          ob_end_flush();//釋放緩存

          }

          3.函數(shù)使用,注意這兩個(gè)函數(shù)有先后執(zhí)行順序,還有別忘了ob_start()

          代碼如下

          <?php

          page_init();//頁(yè)面緩存初始化

          ob_start();//開(kāi)啟緩存

          ...//代碼段

          page_cache(60);//一般是最后一行

          ?>

          例2

          下面做個(gè)示例來(lái)說(shuō)明PHP頁(yè)面緩存技術(shù):

          代碼如下

          <?php

          $_time =10;

          $dir="D:php";

          function cache_start($_time, $dir)

          {

          $cachefile = $dir.'/'.sha1($_SERVER['REQUEST_URI']).'.html';

          $cachetime = $_time;

          ob_start();

          if(file_exists($cachefile) && (time()-filemtime($cachefile) < $cachetime))

          {

          include($cachefile);

          ob_end_flush();

          exit;

          }

          }

          function cache_end($dir)

          {

          $cachefile = $dir.'/'.sha1($_SERVER['REQUEST_URI']).'.html';

          $fp = fopen($cachefile, 'w');

          fwrite($fp, ob_get_contents());

          fclose($fp);

          ob_end_flush();

          }

          cache_start($_time, $dir);

          //以下是輸出的內(nèi)容,放在cache_start和cache_end兩個(gè)方法之間

          for ($i=0;$i<5;$i++)

          {

          echo $i;

          sleep(1);

          }

          cache_end($dir);

          ?>

          例

          利用生成文件做緩存

          代碼如下

          <?php

          ob_start();

          /**

          * @author 何名慧

          * @copyright 2009-3-13

          * @param string $cache_folder 緩文件夾

          * @param int $cache_create_time 文件緩存時(shí)間

          * @example $cache=new Esj_Cache('./_cache',100)

          * @example $cache->read_cache() 讀取緩存并輸出

          * @example $cache->creatre_cache() 創(chuàng)建緩存文件(放在文件未尾)

          * @example $cache->list_file() 返回所有緩存文件列表

          * @example $cache->del_file() 刪除所有緩存文件

          */

          class Esj_Cache{

          private $cache_folder=null;//cacher文件夾

          private $wroot_dir=null;//站點(diǎn)目錄

          private $cacher_create_time=null;//cacher文件的建立時(shí)間

          public function __construct($cache_foldername,$cacher_time=100)

          {

          ob_start();

          $this->wroot_dir=$_SERVER['DOCUMENT_ROOT'];

          $this->cache_folder=$cache_foldername;

          $this->cacher_create_time=$cacher_time;

          }

          public function read_cache()

          {

          try {

          if(self::create_folder($this->cache_folder))

          {

          self::get_cache();//輸出緩存文件信息

          }else

          {

          echo "緩存文件夾創(chuàng)建失敗!";

          return false;

          }

          }catch(Exception $e){

          echo $e;

          return false;

          }

          }

          //測(cè)試緩存文件夾是否存在

          private function exist_folder($foler)

          {

          if(file_exists($this->wroot_dir."/".$foler)){

          return true;

          }else {

          return false;

          }

          }

          //建立一個(gè)新的文件夾

          private function create_folder($foler)

          {

          if(!self::exist_folder($foler))

          {

          try{

          mkdir($this->wroot_dir."/".$foler,0777);

          chmod($this->wroot_dir."/".$foler,0777);

          return true;

          }catch (Exception $e)

          {

          self::get_cache();//輸出緩存

          return false;

          }

          return false;

          }

          else

          {

          return true;

          }

          }

          //讀取緩存文件

          private function get_cache()

          {

          $file_name=self::get_filename();

          if (file_exists($file_name)&&((filemtime($file_name)+$this->cacher_create_time) > time()))

          {

          $content=file_get_contents($file_name);

          if($content)

          {

          echo $content;

          ob_end_flush();

          exit;

          }else

          {

          echo "文件讀取失敗";

          exit;

          }

          }

          }

          //返回文件的名字

          private function get_filename()

          {

          $filename=$file_name=$this->wroot_dir.'/'.$this->cache_folder.'/'.md5($_SERVER['QUERY_STRING']).".html";

          return $filename;

          }

          //建立緩存文件

          public function create_cache()

          {

          $filename=self::get_filename();

          if($filename!="")

          {

          try{

          file_put_contents($filename,ob_get_contents());

          return true;

          }catch (Exception $e)

          {

          echo "寫(xiě)緩存失敗:".$e;

          exit();

          }

          return true;

          }

          }

          // 取得緩存中的所有文件

          public function list_file()

          {

          $path=$this->cache_folder;

          if ($handle = opendir($path)) {

          while (false !== ($file = readdir($handle))) {

          if($file!="." && $file!="..") {

          $path1=$path."/".$file;

          if(file_exists($path1))

          {

          $result[]=$file;

          }

          }

          }

          closedir($handle);

          }

          return $result;

          }

          //刪除緩存中的所有文件

          public function del_file()

          {

          $path=$this->cache_folder;

          if ($handle = opendir($path)) {

          while (false !== ($file = readdir($handle))) {

          if($file!="." && $file!="..") {

          $path1=$path."/".$file;

          if(file_exists($path1))

          {

          unlink($path1);

          }

          }

          }

          closedir($handle);

          }

          return true;

          }

          }

          ?>


        【php頁(yè)面緩存實(shí)現(xiàn)方法】相關(guān)文章:

        1.PHP中讀取大文件實(shí)現(xiàn)方法

        2.Javascript到PHP加密通訊的簡(jiǎn)單實(shí)現(xiàn)方法

        3.關(guān)于php堆排序?qū)崿F(xiàn)原理與應(yīng)用方法

        4.網(wǎng)站頁(yè)面優(yōu)化方法

        5.php入門(mén)教程:生成靜態(tài)html頁(yè)面原理

        6.PHP中多態(tài)如何實(shí)現(xiàn)呢

        7.將php實(shí)現(xiàn)過(guò)濾UBB代碼

        8.網(wǎng)站頁(yè)面優(yōu)化的方法

        国产高潮无套免费视频_久久九九兔免费精品6_99精品热6080YY久久_国产91久久久久久无码

        1. <tt id="5hhch"><source id="5hhch"></source></tt>
          1. <xmp id="5hhch"></xmp>

        2. <xmp id="5hhch"><rt id="5hhch"></rt></xmp>

          <rp id="5hhch"></rp>
              <dfn id="5hhch"></dfn>