Exemplo n.º 1
0
 public function searchDocuments($words, $includeAllDocs)
 {
     $this->checkBtreeIsLoaded();
     if ($this->_btree == null) {
         throw new NotFoundException("BTree is invalid. Try to recreate  the index.", 601);
     } else {
         $arr = BTreeUtil::searchDocuments(strtolower(trim($words)), $this->_btree, $includeAllDocs);
         return $arr;
     }
 }