GoLang SwishResults::nextResult

request it (215)
GoLang replacement for PHP's SwishResults::nextResult [edit | history]



Do you know a GoLang replacement for PHP's SwishResults::nextResult? Write it!

PHP SwishResults::nextResult

PHP original manual for SwishResults::nextResult [ show | php.net ]

SwishResults::nextResult

(PECL swish >= 0.1.0)

SwishResults::nextResultGet the next search result

Description

object SwishResults::nextResult ( void )
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.

Return Values

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

Examples

Example #1 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";
}

?>