当前位置: 首页>>代码示例>>PHP>>正文


PHP UpDateCatCache函数代码示例

本文整理汇总了PHP中UpDateCatCache函数的典型用法代码示例。如果您正苦于以下问题:PHP UpDateCatCache函数的具体用法?PHP UpDateCatCache怎么用?PHP UpDateCatCache使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了UpDateCatCache函数的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: sleep

if (empty($step)) {
    $step = 1;
}
if ($dopost == "ok") {
    if (empty($uparc)) {
        $uparc = 0;
    }
    if ($step == -1) {
        if ($uparc == 0) {
            sleep(1);
        }
        ShowMsg("成功更新所有缓存!", "javascript:;");
        exit;
    } else {
        if ($step == 1) {
            UpDateCatCache();
            ClearOptCache();
            ShowMsg("成功更新栏目缓存,及后台栏目选项,准备更新枚举缓存...", "sys_cache_up.php?dopost=ok&step=2&uparc={$uparc}");
            exit;
        } else {
            if ($step == 2) {
                include_once DEDEINC . "/enums.func.php";
                WriteEnumsCache();
                //WriteAreaCache(); 已过期
                ShowMsg("成功更新枚举缓存,准备更新调用缓存...", "sys_cache_up.php?dopost=ok&step=3&uparc={$uparc}");
                exit;
            } else {
                if ($step == 3) {
                    echo '<meta http-equiv="Content-Type" content="text/html; charset=' . $cfg_soft_lang . '">';
                    $dsql->ExecuteNoneQuery("DELETE FROM `#@__arccache`");
                    echo "\n成功更新arclist调用缓存,准备清理过期会员访问历史...<hr />";
开发者ID:iabing,项目名称:mzzyc,代码行数:31,代码来源:sys_cache_up.php

示例2: CheckPurview

CheckPurview('sys_MakeHtml');
$dsql = new DedeSql(false);
$cids = '';
$dsql->SetQuery("Select ID From `#@__channeltype` ");
$dsql->Execute();
while($row = $dsql->GetArray())
{
	$cids .= ($cids=='' ? $row[0] : ','.$row[0]);
}

if($cids!='')
{
  $rs = $dsql->ExecuteNoneQuery("Delete From `#@__arctype` where NOT (channeltype in ($cids));");
  if($rs>0){
  	$dsql->ExecuteNoneQuery("OPTIMIZE TABLE `#@__arctype`;");
  	UpDateCatCache($dsql);
  }

  $rs = $dsql->ExecuteNoneQuery("Delete From `#@__full_search` where  NOT (channeltype in ($cids));");
  if($rs>0) $dsql->ExecuteNoneQuery("OPTIMIZE TABLE `#@__full_search`;");

  $rs = $dsql->ExecuteNoneQuery("Delete From `#@__archives` where  NOT (channel in ($cids));");
  if($rs>0) $dsql->ExecuteNoneQuery("OPTIMIZE TABLE `#@__archives`;");
  
  $rs = $dsql->ExecuteNoneQuery("Delete From `#@__archivesspec` where  NOT (channel in ($cids));");
  if($rs>0) $dsql->ExecuteNoneQuery("OPTIMIZE TABLE `#@__archivesspec`;");

}

ShowMsg("完成所有信息清理!","javascript:;");
ClearAllLink();
开发者ID:BGCX262,项目名称:zyyhong-svn-to-git,代码行数:31,代码来源:archives_clear.php


注:本文中的UpDateCatCache函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。