(PECL swish >= 0.1.0)
Swish::query — Execute a query and return results object
$query
) : objectBu işlev DENEYSELDİR. Bu işlevin davranışı, ismi ve belgeleri PHP'nin sonraki sürümlerinde hiçbir duyuru yapılmaksızın değiştirilebilir. Bu riski göze alamayacaksanız bu işlevi kullanmayın.
A quick method to execute a search with default parameters.
query
Query string.
Returns SwishResults object.
Throws SwishException on error.
Örnek 1 Basic Swish::query() example
<?php
try {
$swish = new Swish("index.swish-e");
$results = $swish->query("test query");
echo "Found: ", $results->hits, " hits\n";
} catch (SwishException $e) {
echo $e->getMessage(), "\n";
}
?>
Yukarıdaki örnek şuna benzer bir çıktı üretir:
Found: 1 hits