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


PHP s::gp方法代碼示例

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


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

示例1: pw_searchforum

            !$fidcommend[$key] && ($delSQL[$key] = $key);
        }
    }
    $addSQL && $db->update("REPLACE INTO pw_searchforum (fid,vieworder) VALUES " . pwSqlMulti($addSQL));
    if ($updateArr) {
        foreach ($updateArr as $key => $value) {
            $value && $db->update("UPDATE pw_searchforum SET " . pwSqlSingle($value) . " WHERE fid=" . pwEscape($key, false));
        }
    }
    $delSQL && $db->update("DELETE FROM pw_searchforum WHERE fid IN(" . pwImplode($delSQL) . ")");
    //if ($addSQL || $updateArr || $delSQL) {
    updatecache_search();
    //}
    adminmsg('operate_success', "{$basename}&action=forum");
} elseif ($action == 'statistic') {
    s::gp(array('keyword', 'createtime_s', 'createtime_e'));
    $createtime_s = $createtime_s ? $createtime_s : get_date($timestamp - 7 * 24 * 3600, 'Y-m-d');
    $createtime_e = $createtime_e ? $createtime_e : get_date($timestamp, 'Y-m-d');
    $addsql = '';
    if ($keyword) {
        $keyword = trim($keyword);
        $keywordarray = explode(",", $keyword);
        foreach ($keywordarray as $value) {
            $value = str_replace('*', '%', $value);
            $keywhere .= " OR keyword LIKE " . S::sqlEscape("%{$value}%");
        }
        $keywhere = substr_replace($keywhere, "", 0, 3);
        $addsql .= " AND ({$keywhere}) ";
    }
    if ($createtime_s) {
        $addsql .= " AND created_time >= " . s::sqlEscape(PwStrtoTime($createtime_s));
開發者ID:sherlockhouse,項目名稱:aliyun,代碼行數:31,代碼來源:searcher.php

示例2: unset

            $firstactmid = $value;
            break;
        }
    }
    $N_allowtypeopen = true;
}
$msg_guide = $pwforum->headguide($guidename);
//$msg_guide = headguide($guidename);
unset($fourm, $guidename);
//評價功能開啟
$rateSets = unserialize($db_ratepower);
if (!$forumset['rate'] && $rateSets[1] && isset($db_hackdb['rate'])) {
    list($noAjax, $objectid, $typeid, $elementid) = array(TRUE, $tid, 1, 'vote_box');
    require_once R_P . 'hack/rate/index.php';
}
s::gp(array('pingpage'));
!$pingpage && ($pingpage = 1);
if (Perf::checkMemcache()) {
    $_cacheService = Perf::gatherCache('pw_ping');
    $ping_logs = $_cacheService->getPingsByThreadId($tid, $ping_logs, $pingpage);
} else {
    if ($ping_logs) {
        $pingService = L::loadClass('ping', 'forum');
        $ping_logs = $pingService->getPingLogs($tid, $ping_logs, $pingpage);
    } else {
        $ping_logs = array();
    }
}
$isAuthStatus = $isGM || (!$forumset['auth_allowrp'] || $pwforum->authStatus($winddb['userstatus'], $forumset['auth_logicalmethod']) === true);
//!$isAuthStatus && $N_allowtypeopen = false;
//快速回複
開發者ID:jechiy,項目名稱:PHPWind,代碼行數:31,代碼來源:read.php


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