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


PHP Fave::free方法代碼示例

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


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

示例1: Fave

 function _streamDirect($user_id, $own, $offset, $limit, $since_id, $max_id)
 {
     $fav = new Fave();
     $qry = null;
     if ($own) {
         $qry = 'SELECT fave.* FROM fave ';
         $qry .= 'WHERE fave.user_id = ' . $user_id . ' ';
     } else {
         $qry = 'SELECT fave.* FROM fave ';
         $qry .= 'INNER JOIN notice ON fave.notice_id = notice.id ';
         $qry .= 'WHERE fave.user_id = ' . $user_id . ' ';
         $qry .= 'AND notice.is_local != ' . Notice::GATEWAY . ' ';
     }
     if ($since_id != 0) {
         $qry .= 'AND notice_id > ' . $since_id . ' ';
     }
     if ($max_id != 0) {
         $qry .= 'AND notice_id <= ' . $max_id . ' ';
     }
     // NOTE: we sort by fave time, not by notice time!
     $qry .= 'ORDER BY modified DESC ';
     if (!is_null($offset)) {
         $qry .= "LIMIT {$limit} OFFSET {$offset}";
     }
     $fav->query($qry);
     $ids = array();
     while ($fav->fetch()) {
         $ids[] = $fav->notice_id;
     }
     $fav->free();
     unset($fav);
     return $ids;
 }
開發者ID:Br3nda,項目名稱:StatusNet,代碼行數:33,代碼來源:Fave.php

示例2: clearFaves

 function clearFaves()
 {
     $fave = new Fave();
     $fave->notice_id = $this->id;
     if ($fave->find()) {
         while ($fave->fetch()) {
             self::blow('fave:ids_by_user_own:%d', $fave->user_id);
             self::blow('fave:ids_by_user_own:%d;last', $fave->user_id);
             self::blow('fave:ids_by_user:%d', $fave->user_id);
             self::blow('fave:ids_by_user:%d;last', $fave->user_id);
             $fave->delete();
         }
     }
     $fave->free();
 }
開發者ID:Br3nda,項目名稱:statusnet-debian,代碼行數:15,代碼來源:Notice.php

示例3: onProfileDeleteRelated

 public function onProfileDeleteRelated(Profile $profile, array &$related)
 {
     $fave = new Fave();
     $fave->user_id = $profile->id;
     $fave->delete();
     // Will perform a DELETE matching "user_id = {$user->id}"
     $fave->free();
     Fave::blowCacheForProfileId($profile->id);
     return true;
 }
開發者ID:bashrc,項目名稱:gnusocial-debian,代碼行數:10,代碼來源:FavoritePlugin.php

示例4: blowFavesCache

 function blowFavesCache($blowLast = false)
 {
     $cache = common_memcache();
     if ($cache) {
         $fave = new Fave();
         $fave->notice_id = $this->id;
         if ($fave->find()) {
             while ($fave->fetch()) {
                 $cache->delete(common_cache_key('user:faves:' . $fave->user_id));
                 if ($blowLast) {
                     $cache->delete(common_cache_key('user:faves:' . $fave->user_id . ';last'));
                 }
             }
         }
         $fave->free();
         unset($fave);
     }
 }
開發者ID:Br3nda,項目名稱:laconica,代碼行數:18,代碼來源:Notice.php


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