SwishResults::nextResult

(PECL swish >= 0.1.0)
Get the next search result
object SwishResults::nextResult ( void )
Returns:

Returns the next SwishResult object in the result set or FALSE if there are no more results available.

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.

Examples:
Basic SwishResults::nextResult() example
<?php

try {

    $swish = new Swish("index.swish-e");
    $search = $swish->prepare();

    $results = $search->execute("lost");
    while($result = $results->nextResult()) {
        /* do something with the result object */
    }

} catch (SwishException $e) {
    echo $e->getMessage(), "\n";
}

?>

doc_php
2016-02-24 16:12:02
Comments
Leave a Comment

Please login to continue.