首页 > 后端开发 > php教程 > 为什么我在 mysqli_multi_query 中收到'mysqli_next_result(): There is no next result set\”错误?

为什么我在 mysqli_multi_query 中收到'mysqli_next_result(): There is no next result set\”错误?

Linda Hamilton
发布: 2024-12-29 03:35:16
原创
949 人浏览过

Why Am I Getting a

严格标准:mysqli_next_result() 与 mysqli_multi_query 错误

许多开发人员在使用 mysqli_multi_query 时遇到严格标准错误。此错误消息显示“mysqli_next_result(): 没有下一个结果集。请调用 mysqli_more_results()/mysqli::more_results() 检查是否调用此函数/方法。”

Root原因

使用mysqli_multi_query时未检查是否有后续结果集。默认情况下,mysqli_next_result 继续处理下一个结果集,即使不存在。为了避免该错误,应事先调用函数 mysqli_more_results 以确定是否存在任何其他结果集。

解决方案

要解决该问题,请使用以下代码:

if (mysqli_multi_query($db, $querystring)) {
    do {
        if ($result = mysqli_store_result($db)) {
            // ...
        }
    } while (mysqli_more_results($db) && mysqli_next_result($db));
}
登录后复制

这确保仅当存在时才执行 mysqli_next_result是后续结果集。

附加说明

  • 没有必要像某些人建议的那样从 DO WHILE 切换到 WHILE。
  • 如果查询没有生成结果集,则不会执行循环。
  • 此外,可以修改代码以计算受影响的行数或显示任何错误消息。

以上是为什么我在 mysqli_multi_query 中收到'mysqli_next_result(): There is no next result set\”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板