PHP簡單的緩衝,如何把頁面代碼賦值給變數?

來源:互聯網
上載者:User
在開源檔案看到不錯的緩衝類,如下:

dir_isvalid($dir)) {           $this->dir = $dir;           $this->lifetime = $lifetime;           $this->ext = '.Php';           $this->cacheid = $this->getcacheid();       }   }   /**    * 檢查緩衝是否有效   */   private function isvalid() {       if (!file_exists($this->cacheid)) return false;       if (!(@$mtime = filemtime($this->cacheid))) return false;       if (mktime() - $mtime > $this->lifetime) return false;       return true;   }   /**    * 寫入緩衝    * $mode == 0 , 以瀏覽器緩衝的方式取得頁面內容    * $mode == 1 , 以直接賦值(通過$content參數接收)的方式取得頁面內容    * $mode == 2 , 以本地讀取(fopen ile_get_contents)的方式取得頁面內容(似乎這種方式沒什麼必要)   */   public function write($mode=0,$content='') {       switch ($mode) {           case 0:               $content = ob_get_contents();               break;           default:               break;       }       ob_end_flush();       try {           file_put_contents($this->cacheid,$content);       }       catch (Exception $e) {           $this->error('寫入緩衝失敗!請檢查目錄許可權!');       }   }   /**    * 載入緩衝    * exit() 載入緩衝後終止原頁面程式的執行,快取無效判定則運行原頁面程式產生緩衝    * ob_start() 開啟瀏覽器緩衝用於在頁面結尾處取得頁面內容   */   public function load() {       if ($this->isvalid()) {           echo "This is Cache. ";           //以下兩種方式,哪種方式好?????           require_once($this->cacheid);           //echo file_get_contents($this->cacheid);           exit();       }       else {           ob_start();       }   }   /**    * 清除緩衝   */   public function clean() {       try {           unlink($this->cacheid);       }       catch (Exception $e) {           $this->error('清除快取檔案失敗!請檢查目錄許可權!');       }   }   /**    * 取得快取檔案路徑   */   private function getcacheid() {       return $this->dir.md5($this->geturl()).$this->ext;   }   /**    * 檢查目錄是否存在或是否可建立    */   private function dir_isvalid($dir) {       if (is_dir($dir)) return true;       try {           mkdir($dir,0777);       }       catch (Exception $e) {             $this->error('所設定緩衝目錄不存在並且建立失敗!請檢查目錄許可權!');             return false;                   }       return true;   }   /**    * 取得當前頁面完整url   */   private function geturl() {       $url = '';       if (isset($_SERVER['REQUEST_URI'])) {           $url = $_SERVER['REQUEST_URI'];       }       else {           $url = $_SERVER['Php_SELF'];           $url .= empty($_SERVER['QUERY_STRING'])?'':'?'.$_SERVER['QUERY_STRING'];       }       return $url;   }   /**    * 輸出錯誤資訊   */   private function error($str) {       echo ''.$str.'';   }}?> 

然後自己建立簡單PHP檔案:

load();   }   //頁面代碼開始   $content = date('H:i:s jS F');      echo $content;   //頁面代碼結束   if (CACHEENABLE){       $cache->write(1,$content); //首次運行或緩衝到期,產生緩衝   }?>

下面問題來了,$content = date('H:i:s jS F');要是換成PHO頁面內容 怎麼辦?

$content =<<<                      Bootstrap 101 Template                            

>>>是這樣寫嗎?

回複內容:

在開源檔案看到不錯的緩衝類,如下:

dir_isvalid($dir)) {           $this->dir = $dir;           $this->lifetime = $lifetime;           $this->ext = '.Php';           $this->cacheid = $this->getcacheid();       }   }   /**    * 檢查緩衝是否有效   */   private function isvalid() {       if (!file_exists($this->cacheid)) return false;       if (!(@$mtime = filemtime($this->cacheid))) return false;       if (mktime() - $mtime > $this->lifetime) return false;       return true;   }   /**    * 寫入緩衝    * $mode == 0 , 以瀏覽器緩衝的方式取得頁面內容    * $mode == 1 , 以直接賦值(通過$content參數接收)的方式取得頁面內容    * $mode == 2 , 以本地讀取(fopen ile_get_contents)的方式取得頁面內容(似乎這種方式沒什麼必要)   */   public function write($mode=0,$content='') {       switch ($mode) {           case 0:               $content = ob_get_contents();               break;           default:               break;       }       ob_end_flush();       try {           file_put_contents($this->cacheid,$content);       }       catch (Exception $e) {           $this->error('寫入緩衝失敗!請檢查目錄許可權!');       }   }   /**    * 載入緩衝    * exit() 載入緩衝後終止原頁面程式的執行,快取無效判定則運行原頁面程式產生緩衝    * ob_start() 開啟瀏覽器緩衝用於在頁面結尾處取得頁面內容   */   public function load() {       if ($this->isvalid()) {           echo "This is Cache. ";           //以下兩種方式,哪種方式好?????           require_once($this->cacheid);           //echo file_get_contents($this->cacheid);           exit();       }       else {           ob_start();       }   }   /**    * 清除緩衝   */   public function clean() {       try {           unlink($this->cacheid);       }       catch (Exception $e) {           $this->error('清除快取檔案失敗!請檢查目錄許可權!');       }   }   /**    * 取得快取檔案路徑   */   private function getcacheid() {       return $this->dir.md5($this->geturl()).$this->ext;   }   /**    * 檢查目錄是否存在或是否可建立    */   private function dir_isvalid($dir) {       if (is_dir($dir)) return true;       try {           mkdir($dir,0777);       }       catch (Exception $e) {             $this->error('所設定緩衝目錄不存在並且建立失敗!請檢查目錄許可權!');             return false;                   }       return true;   }   /**    * 取得當前頁面完整url   */   private function geturl() {       $url = '';       if (isset($_SERVER['REQUEST_URI'])) {           $url = $_SERVER['REQUEST_URI'];       }       else {           $url = $_SERVER['Php_SELF'];           $url .= empty($_SERVER['QUERY_STRING'])?'':'?'.$_SERVER['QUERY_STRING'];       }       return $url;   }   /**    * 輸出錯誤資訊   */   private function error($str) {       echo ''.$str.'';   }}?> 

然後自己建立簡單PHP檔案:

load();   }   //頁面代碼開始   $content = date('H:i:s jS F');      echo $content;   //頁面代碼結束   if (CACHEENABLE){       $cache->write(1,$content); //首次運行或緩衝到期,產生緩衝   }?>

下面問題來了,$content = date('H:i:s jS F');要是換成PHO頁面內容 怎麼辦?

$content =<<<                      Bootstrap 101 Template                            

>>>是這樣寫嗎?

不用啊 第三部分已經是你要echo的內容了 你那裡直接寫

你好,世界!

就可以了
如果要輸出變數就用串連符就可以了

給你推薦一個基於shared memory 的緩衝,簡單,不需要外掛程式,使用方法也一樣簡單(在我寫的一篇文章裡面有介紹http://segmentfault.com/a/1190000003872583)

shmcache('foo', 'bar');//設定緩衝$bar = shmcache('foo');//擷取緩衝 function shmcache($key, $val=null, $expire=100) {   static $_shm = null;   if ( null === $_shm ) $_shm = @shm_attach(crc32('mcache.solt'), 10485760, 0755);   if (($time = time()) && ($k = crc32($key)) && $val && $expire){     shm_put_var($_shm, $k, array($time + $expire, $val));     return $val;   }   return shm_has_var($_shm, $k) && ($data = shm_get_var($_shm, $k)) && $data[0] >   $time ? $data[1] : null; }
  • 相關文章

    聯繫我們

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