略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: SwishResults::nextResult

2024-05-02

SwishResults::nextResult

(PECL swish >= 0.1.0)

SwishResults::nextResultGet the next search result

说明

SwishResults::nextResult ( void ) : object
Warning

此函数是实验性的。此函数的表象,包括名称及其相关文档都可能在未来的 PHP 发布版本中未通知就被修改。使用本函数风险自担 。

返回值

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

范例

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";
}

?>
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/swishresults.nextresult.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3