本文整理匯總了PHP中cachemgr::check_expries方法的典型用法代碼示例。如果您正苦於以下問題:PHP cachemgr::check_expries方法的具體用法?PHP cachemgr::check_expries怎麽用?PHP cachemgr::check_expries使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類cachemgr
的用法示例。
在下文中一共展示了cachemgr::check_expries方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: strtoupper
function &select($sql)
{
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 (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])));
if (!cachemgr::check_current_co_objects_exists('DB', $table)) {
cachemgr::check_expries('DB', $table);
}
}
}
$rs = $this->exec($sql, false, $db_lnk);
$data = array();
while ($row = mysql_fetch_assoc($rs['rs'])) {
$data[] = $row;
}
mysql_free_result($rs['rs']);
return $data;
}
示例2: check_expries
public function check_expries($key, $force = false)
{
if ($force || 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_expries('CONF', $this->__checkVaryArr[$key]);
}
}
}