(PECL swish >= 0.1.0)
Swish->prepare — آمادهسازی پرس و جوی جستجو
This function is EXPERIMENTAL. The behaviour of this function, its name, and surrounding documentation may change without notice in a future release of PHP. This function should be used at your own risk.
آمادهسازی و بازگرداندن شی جستجو که برای تعداد بینهایت پرس و جو میتوانید از آنها استفاده کنید.
رشته اختیاری پرس و جو. پرس و جو میتواند با استفاده از SwishSearch->execute() تعیین شود.
بازگرداندن شی SwishSearch.
ایجاد SwishException در صورت خطا.
Example #1 مثال اصلی Swish->prepare()
<?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