當前位置: 首頁>>代碼示例>>PHP>>正文


PHP cachemgr::check_expires方法代碼示例

本文整理匯總了PHP中cachemgr::check_expires方法的典型用法代碼示例。如果您正苦於以下問題:PHP cachemgr::check_expires方法的具體用法?PHP cachemgr::check_expires怎麽用?PHP cachemgr::check_expires使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在cachemgr的用法示例。


在下文中一共展示了cachemgr::check_expires方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: select

 public function select($sql, $skipModifiedMark = false)
 {
     if ($this->_ro_lnk) {
         $db_lnk = $this->_ro_lnk;
     } else {
         $db_lnk = $this->_ro_conn();
     }
     if ($this->prefix != 'vmc_') {
         $sql = preg_replace_callback('/([`\\s\\(,])(vmc_)([0-9a-z\\_]+)([`\\s\\.]{0,1})/is', array($this, 'fix_dbprefix'), $sql);
     }
     if (cachemgr::enable() && cachemgr::check_current_co_depth() > 0 && preg_match_all('/FROM\\s+([]0-9a-z_:"`.@[-]*)/is', $sql, $matchs)) {
         if (isset($matchs[1])) {
             foreach ($matchs[1] as $table) {
                 if (empty($table)) {
                     continue;
                 }
                 $table = strtoupper(trim(str_replace(array('`', '"', '\''), array('', '', ''), $table)));
                 $pos = strpos($table, strtoupper($this->prefix));
                 if ($pos === 0) {
                     $table = substr($table, strlen($this->prefix));
                 }
                 //todo: 真實表名
                 if (!cachemgr::check_current_co_objects_exists('DB', $table)) {
                     cachemgr::check_expires('DB', $table);
                 }
             }
         }
     }
     $rs = $this->exec($sql, $skipModifiedMark, $db_lnk);
     if (!empty($rs['rs'])) {
         return $rs['rs'];
     } else {
         return false;
     }
 }
開發者ID:noikiy,項目名稱:snk,代碼行數:35,代碼來源:mysql.php

示例2: select

 public function select($sql, $skipModifiedMark = false)
 {
     if ($this->_rw_lnk) {
         $db_lnk =& $this->_rw_lnk;
     } else {
         if ($this->_ro_lnk) {
             $db_lnk =& $this->_ro_lnk;
         } else {
             $db_lnk =& $this->_ro_conn();
         }
     }
     if ($this->prefix != 'sdb_') {
         //$sql = preg_replace('/([`\s\(,])(sdb_)([a-z\_]+)([`\s\.]{0,1})/is',"\${1}".$this->prefix."\\3\\4",$sql);
         $sql = preg_replace_callback('/([`\\s\\(,])(sdb_)([0-9a-z\\_]+)([`\\s\\.]{0,1})/is', array($this, 'fix_dbprefix'), $sql);
         //todo: 兼容有特殊符號的表名前綴
     }
     //todo:為了配合check_expries判斷表名,冗餘執行
     if (cachemgr::enable() && cachemgr::check_current_co_depth() > 0 && preg_match('/FROM\\s+([]0-9a-z_:"`.@[-]*)/is', $sql, $matchs)) {
         if (isset($matchs[1])) {
             $table = strtoupper(trim(str_replace(array('`', '"', '\''), array('', '', ''), $matchs[1])));
             $pos = strpos($table, strtoupper($this->prefix));
             if ($pos === 0) {
                 $table = substr($table, strlen($this->prefix));
             }
             //todo: 真實表名
             if (!cachemgr::check_current_co_objects_exists('DB', $table)) {
                 cachemgr::check_expires('DB', $table);
             }
         }
     }
     $rs = $this->exec($sql, $skipModifiedMark, $db_lnk);
     if ($rs['rs']) {
         $data = array();
         while ($row = mysql_fetch_assoc($rs['rs'])) {
             $data[] = $row;
         }
         mysql_free_result($rs['rs']);
         return $data;
     } else {
         return false;
     }
 }
開發者ID:syjzwjj,項目名稱:quyeba,代碼行數:42,代碼來源:connections.php

示例3: check_expires

 public function check_expires($key, $force = false)
 {
     if ($force || cachemgr::enable() && cachemgr::check_current_co_depth() > 0) {
         if (!isset($this->__checkVaryArr[$key])) {
             $this->__checkVaryArr[$key] = strtoupper(md5($this->app_id . $key));
         }
         if (!cachemgr::check_current_co_objects_exists('CONF', $this->__checkVaryArr[$key])) {
             cachemgr::check_expires('CONF', $this->__checkVaryArr[$key]);
         }
     }
 }
開發者ID:yindonghai,項目名稱:msk.com,代碼行數:11,代碼來源:app.php


注:本文中的cachemgr::check_expires方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。