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


PHP ArticleSearchIndex::filterKeywords方法代碼示例

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


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

示例1: indexObjectKeywords

 /**
  * Index a block of text for an object.
  * @param $objectId int
  * @param $text string
  * @param $position int
  */
 function indexObjectKeywords($objectId, $text, &$position)
 {
     $searchDao =& DAORegistry::getDAO('ArticleSearchDAO');
     $keywords =& ArticleSearchIndex::filterKeywords($text);
     for ($i = 0, $count = count($keywords); $i < $count; $i++) {
         if ($searchDao->insertObjectKeyword($objectId, $keywords[$i], $position) !== null) {
             $position += 1;
         }
     }
 }
開發者ID:JovanyJeff,項目名稱:hrp,代碼行數:16,代碼來源:ArticleSearchIndex.inc.php

示例2: _parseQuery

 /**
  * Query parsing helper routine.
  * Returned structure is based on that used by the Search::QueryParser Perl module.
  */
 function _parseQuery($signTokens, $tokens, &$pos, $total)
 {
     $return = array('+' => array(), '' => array(), '-' => array());
     $postBool = $preBool = '';
     $notOperator = String::strtolower(Locale::translate('search.operator.not'));
     $andOperator = String::strtolower(Locale::translate('search.operator.and'));
     $orOperator = String::strtolower(Locale::translate('search.operator.or'));
     while ($pos < $total) {
         if (!empty($signTokens[$pos])) {
             $sign = $signTokens[$pos];
         } else {
             if (empty($sign)) {
                 $sign = '+';
             }
         }
         $token = String::strtolower($tokens[$pos++]);
         switch ($token) {
             case $notOperator:
                 $sign = '-';
                 break;
             case ')':
                 return $return;
             case '(':
                 $token = ArticleSearch::_parseQuery($signTokens, $tokens, $pos, $total);
             default:
                 $postBool = '';
                 if ($pos < $total) {
                     $peek = String::strtolower($tokens[$pos]);
                     if ($peek == $orOperator) {
                         $postBool = 'or';
                         $pos++;
                     } else {
                         if ($peek == $andOperator) {
                             $postBool = 'and';
                             $pos++;
                         }
                     }
                 }
                 $bool = empty($postBool) ? $preBool : $postBool;
                 $preBool = $postBool;
                 if ($bool == 'or') {
                     $sign = '';
                 }
                 if (is_array($token)) {
                     $k = $token;
                 } else {
                     $k = ArticleSearchIndex::filterKeywords($token, true);
                 }
                 if (!empty($k)) {
                     $return[$sign][] = $k;
                 }
                 $sign = '';
                 break;
         }
     }
     return $return;
 }
開發者ID:alenoosh,項目名稱:ojs,代碼行數:61,代碼來源:ArticleSearch.inc.php


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