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


PHP cache::clear方法代碼示例

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


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

示例1: query

 /**
  * @author Mauricio Giraldo
  * @desc Executes a query stores in $sql variable
  * @version 1.0 03/05/2010
  * @param None
  * @return Boolean
  */
 public function query($sql = "")
 {
     if (!$sql) {
         $sql = $this->sql;
     }
     // Validate malicious code is not present:
     //if (!strpos(strtolower($sql), "alter") && !strpos(strtolower($sql), "drop") && !strpos(strtolower($sql), "create")) {
     logFactory::log($this, $sql);
     $this->RES = mysql_query($sql) or logFactory::error($this, mysql_error());
     //$this->RES = mysql_query($sql) or print(mysql_error().":".$sql);
     $cache = new cache();
     if (${$_POST}["do"] == "insert_exec" && $_POST["do"] != "insert_exec" && $_POST["do"] != "edit_exec") {
         $cache->clear();
     }
     return true;
     //}
     //else
     //return false;
 }
開發者ID:highestgoodlikewater,項目名稱:scrumban,代碼行數:26,代碼來源:class.php

示例2: template

<?php

if ($action == 'deleteCache') {
    cache::clear();
    pageCache::clearAll();
    extension::get('SETTINGS_DELETE_CACHE');
    echo message::success(lang::get('delete_cache_success'), true);
}
if ($action == 'loadTemplate') {
    $template = new template(dyn::get('template'));
    if ($template->install(true) !== true) {
        echo message::danger(lang::get('load_template_failed'), true);
    } else {
        echo message::success(lang::get('load_template_success'), true);
    }
}
?>
<div class="row">	
    <div class="col-lg-8">
        <div class="panel panel-default">
            <div class="panel-heading">
            	<h3 class="panel-title pull-left"><?php 
echo lang::get('general');
?>
</h3>
                <div class="pull-right">
                	<a href="<?php 
echo url::backend('settings', ['subpage' => 'main', 'action' => 'deleteCache']);
?>
" class="btn btn-sm btn-default"><?php 
echo lang::get('delete_cache');
開發者ID:pasterntt,項目名稱:dynao-CMS,代碼行數:31,代碼來源:settings.main.php

示例3: clear

 function clear()
 {
     if (function_exists('\\apcu_clear_cache')) {
         \apcu_clear_cache();
     } else {
         if (function_exists('\\apc_clear_cache')) {
             \apc_clear_cache('user');
         } else {
             parent::clear();
         }
     }
 }
開發者ID:hazardland,項目名稱:db,代碼行數:12,代碼來源:db.php


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