Forum und email

Swish->prepare

(PECL swish:0.1-0.3.0)

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.

매개변수

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