Delicious Bookmark this on Delicious Share on Facebook SlashdotSlashdot It! Digg! Digg



PHP : Function Reference : Swish Functions : Swish->prepare

Swish->prepare

Prepare a search query ()
object Swish->prepare ( [string query] )

Warning:

This function is EXPERIMENTAL. The behaviour of this function, the name of this function, and anything else documented about this function may change without notice in a future release of PHP. Use this function at your own risk.

Prepare and return a search object, which you can later use for unlimited number of queries.

Parameters

query

Optional query string. The query can be also set using SwishSearch->execute() method.

Return Values

Returns SwishSearch object.

Errors/Exceptions

Throws SwishException on error.

Examples

Example 2510. Basic Swish->prepare() example

<?php

try {

   
$swish = new Swish("index.swish-e");
   
$search = $swish->prepare("search query");
   
$results = $search->execute();
   echo
"Found: ", $results->hits, " hits\n";

   
$results = $search->execute("new search");

   echo
"Found: ", $results->hits, " hits\n";
} catch (
SwishException $e) {
   echo
$e->getMessage(), "\n";
}

?>

The above example will output something similar to:

Found: 2 hits
Found: 5 hits


Change Language


Follow Navioo On Twitter
Swish::__construct
Swish->getMetaList
Swish->getPropertyList
Swish->prepare
Swish->query
SwishResult->getMetaList
SwishResult->stem
SwishResults->getParsedWords
SwishResults->getRemovedStopwords
SwishResults->nextResult
SwishResults->seekResult
SwishSearch->execute
SwishSearch->resetLimit
SwishSearch->setLimit
SwishSearch->setPhraseDelimiter
SwishSearch->setSort
SwishSearch->setStructure
eXTReMe Tracker