Swish->prepare
(PECL swish >= 0.1.0)
Swish->prepare — آمادهسازی پرس و جوی جستجو
Description
object Swish->prepare
([ string $query
] )
Warning
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.
آمادهسازی و بازگرداندن شی جستجو که برای تعداد بینهایت پرس و جو میتوانید از آنها استفاده کنید.
Parameters
- query
-
رشته اختیاری پرس و جو. پرس و جو میتواند با استفاده از SwishSearch->execute() تعیین شود.
Return Values
بازگرداندن شی SwishSearch.
Errors/Exceptions
ایجاد SwishException در صورت خطا.
Examples
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
There are no user contributed notes for this page.
