运维日志您现在的位置是:首页 > 博客日志 > 运维日志

Strict Standards: mysqli_next_result(): There is no next result set. Please, call mysqli_more_results()/mysqli::more_results() to check whether to cal

<a href='mailto:'>微wx笑</a>的头像微wx笑 2023-01-06运维日志 2 0关键字: mysql  mysqli_next_result  

Strict Standards: mysqli_next_result(): There is no next result set. Please, call mysqli_more_results()/mysqli::more_results() to check whether to call this function/method in

Strict Standards: mysqli_next_result(): There is no next result set. Please, call mysqli_more_results()/mysqli::more_results() to check whether to call this function/method inrZp无知


rZp无知

发生该错误的是官方文档 https://www.php.net/manual/zh/mysqli.multi-query.php rZp无知

中的一段代码rZp无知

<?php

mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
$link = mysqli_connect("localhost", "my_user", "my_password", "world");

$query = "SELECT CURRENT_USER();";
$query .= "SELECT Name FROM City ORDER BY ID LIMIT 20, 5";

/* 批量执行查询 */
mysqli_multi_query($link, $query);
do {
    /* store the result set in PHP */
    if ($result = mysqli_store_result($link)) {
        while ($row = mysqli_fetch_row($result)) {
            printf("%s\n", $row[0]);
        }
    }
    /* print divider */
    if (mysqli_more_results($link)) {
        printf("-----------------\n");
    }
} while (mysqli_next_result($link));

解决方法rZp无知

如果 mysqli_more_results 返回结果为 false,则应该退出循环,不再调用 mysqli_next_resultrZp无知

例如:rZp无知

    if (mysqli_more_results($link)) {
        printf("-----------------\n");
    }else{
       break; 
    }


rZp无知


rZp无知

本文由 微wx笑 创作,采用 署名-非商业性使用-相同方式共享 4.0 许可协议,转载请附上原文出处链接及本声明。
原文链接:https://www.ivu4e.cn/blog/service/2023-01-06/1642.html

很赞哦! () 有话说 ()