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


PHP LinkCache::addLink方法代碼示例

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


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

示例1: watchlist

$sql = "DROP TABLE IF EXISTS watchlist";
wfQuery($sql, DB_MASTER);
$sql = "CREATE TABLE watchlist (\n  wl_user int(5) unsigned NOT NULL,\n  wl_page int(8) unsigned NOT NULL,\n  UNIQUE KEY (wl_user, wl_page)\n) ENGINE=MyISAM PACK_KEYS=1";
wfQuery($sql, DB_MASTER);
$lc = new LinkCache();
# Now, convert!
$sql = "SELECT user_id,user_watch FROM user";
$res = wfQuery($sql, DB_SLAVE);
$nu = wfNumRows($res);
$sql = "INSERT into watchlist (wl_user,wl_page) VALUES ";
$i = $n = 0;
while ($row = wfFetchObject($res)) {
    $list = explode("\n", $row->user_watch);
    $bits = array();
    foreach ($list as $title) {
        if ($id = $lc->addLink($title) and !$bits[$id]++) {
            $sql .= ($i++ ? "," : "") . "({$row->user_id},{$id})";
        }
    }
    if ($n++ % 100 == 0) {
        echo "{$n} of {$nu} users done...\n";
    }
}
echo "{$n} users done.\n";
if ($i) {
    wfQuery($sql, DB_MASTER);
}
# Add index
# is this necessary?
$sql = "ALTER TABLE watchlist\n  ADD INDEX wl_user (wl_user),\n  ADD INDEX wl_page (wl_page)";
#wfQuery( $sql, DB_MASTER );
開發者ID:amjadtbssm,項目名稱:website,代碼行數:31,代碼來源:upgradeWatchlist.php


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