(PECL swish:0.1-0.3.0)
Swish->prepare — Prepare a search query
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.
Optional query string. The query can be also set using SwishSearch->execute() method.
Returns SwishSearch object.
Throws SwishException on error.
Example#1 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