Zend Framework
LICENSE
This source file is subject to the new BSD license that is bundled with this package in the file LICENSE.txt. It is also available through the world-wide-web at this URL: http://framework.zend.com/license/new-bsd If you did not receive a copy of the license and are unable to obtain it through the world-wide-web, please send an email to license@zend.com so we can send you a copy immediately.
A Query that matches documents containing a particular sequence of terms.
array $_offsets = ''Term positions (relative positions of terms within the phrase).
Array of integers
 Details
 Detailsarray $_resVector = 'null'Result vector.
 Details
 Detailsinteger $_slop = ''Sets the number of other words permitted between words in query phrase.
If zero, then this is an exact phrase search. For larger values this works like a WITHIN or NEAR operator.
The slop is in fact an edit-distance, where the units correspond to moves of terms in the query phrase out of position. For example, to switch the order of two words requires two moves (the first move places the words atop one another), so to permit re-orderings of phrases, the slop must be at least two. More exact matches are scored higher than sloppier matches, thus search results are sorted by exactness.
The slop is zero by default, requiring exact matches.
 Details
 Detailsarray $_terms = ''Terms to find.
Array of Zend_Search_Lucene_Index_Term objects.
 Details
 Detailsarray $_termsPositions = 'array'Terms positions vectors.
Array of Arrays: term1Id => (docId => array( pos1, pos2, ... ), ...) term2Id => (docId => array( pos1, pos2, ... ), ...)
 Details
 Details__construct(
          array $terms
              =
              null, array $offsets
              =
              null, string $field
              =
              null
          )
        
        :
        Class constructor. Create a new prase query.
 Details
 Details__toString(
          
          )
        
        :
        stringPrint a query
 Details
 Details_exactPhraseFreq(
          integer $docId
          )
        
        :
        floatScore calculator for exact phrase queries (terms sequence is fixed)
 Details
 Details_highlightMatches(
          Zend_Search_Lucene_Search_Highlighter_Interface $highlighter
          )
        
        :
        Query specific matches highlighting
 Details
 Details_sloppyPhraseFreq(
          integer $docId, Zend_Search_Lucene_Interface $reader
          )
        
        :
        floatScore calculator for sloppy phrase queries (terms sequence is fixed)
 Details
 DetailsaddTerm(
          Zend_Search_Lucene_Index_Term $term, integer $position
              =
              null
          )
        
        :
        Adds a term to the end of the query phrase.
The relative position of the term is specified explicitly or the one immediately after the last term added.
 Details
 DetailscreateWeight(
          Zend_Search_Lucene_Interface $reader
          )
        
        :
        Zend_Search_Lucene_Search_WeightConstructs an appropriate Weight implementation for this query.
 Details
 Detailsexecute(
          Zend_Search_Lucene_Interface $reader, Zend_Search_Lucene_Index_DocsFilter|null $docsFilter
              =
              null
          )
        
        :
        Execute query in context of index reader It also initializes necessary internal structures
 Details
 DetailsgetQueryTerms(
          
          )
        
        :
        arrayReturn query terms
 Details
 DetailsgetSlop(
          
          )
        
        :
        integerGet slop
 Details
 DetailsgetTerms(
          
          )
        
        :
        arrayReturns query term
 Details
 DetailsmatchedDocs(
          
          )
        
        :
        arrayGet document ids likely matching the query
It's an array with document ids as keys (performance considerations)
 Details
 Detailsoptimize(
          Zend_Search_Lucene_Interface $index
          )
        
        :
        Zend_Search_Lucene_Search_QueryOptimize query in the context of specified index
 Details
 Detailsrewrite(
          Zend_Search_Lucene_Interface $index
          )
        
        :
        Zend_Search_Lucene_Search_QueryRe-write query into primitive queries in the context of specified index
 Details
 Detailsscore(
          integer $docId, Zend_Search_Lucene_Interface $reader
          )
        
        :
        floatScore specified document
 Details
 DetailssetSlop(
          integer $slop
          )
        
        :
        Set slop
 Details
 DetailssetWeight(
          integer $num, Zend_Search_Lucene_Search_Weight_Term $weight
          )
        
        :
        Set weight for specified term
 Details
 Details