Swish::prepare

(PECL swish >= 0.1.0)

Swish::preparePrepare a search query

说锟斤拷

Swish::prepare ([ string $query ] ) : object
Warning

锟剿猴拷锟斤拷锟斤拷实锟斤拷锟斤拷锟侥★拷锟剿猴拷锟斤拷锟侥憋拷锟襟,帮拷锟斤拷锟斤拷锟狡硷拷锟斤拷锟斤拷锟斤拷牡锟斤拷锟斤拷锟斤拷锟斤拷锟轿达拷锟斤拷锟� PHP 锟斤拷锟斤拷锟芥本锟斤拷未通知锟酵憋拷锟睫改★拷使锟矫憋拷锟斤拷锟斤拷锟斤拷锟斤拷锟皆碉拷 锟斤拷

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

锟斤拷锟斤拷

query

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";
}

?>

锟斤拷锟斤拷锟斤拷锟教碉拷锟斤拷锟斤拷锟斤拷锟斤拷冢锟�

Found: 2 hits
Found: 5 hits