Delicious Bookmark this on Delicious Share on Facebook SlashdotSlashdot It! Digg! Digg



PHP : Function Reference : Swish Functions : SwishResults->nextResult

SwishResults->nextResult

Get the next search result ()
object SwishResults->nextResult ( )

Warning:

This function is EXPERIMENTAL. The behaviour of this function, the name of this function, and anything else documented about this function may change without notice in a future release of PHP. Use this function 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 2514. 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";
}

?>


Change Language


Follow Navioo On Twitter
Swish::__construct
Swish->getMetaList
Swish->getPropertyList
Swish->prepare
Swish->query
SwishResult->getMetaList
SwishResult->stem
SwishResults->getParsedWords
SwishResults->getRemovedStopwords
SwishResults->nextResult
SwishResults->seekResult
SwishSearch->execute
SwishSearch->resetLimit
SwishSearch->setLimit
SwishSearch->setPhraseDelimiter
SwishSearch->setSort
SwishSearch->setStructure
eXTReMe Tracker