1. <small id='2xGh2'></small><noframes id='2xGh2'>

    2. <legend id='2xGh2'><style id='2xGh2'><dir id='2xGh2'><q id='2xGh2'></q></dir></style></legend>

      1. <tfoot id='2xGh2'></tfoot>
          <bdo id='2xGh2'></bdo><ul id='2xGh2'></ul>
        <i id='2xGh2'><tr id='2xGh2'><dt id='2xGh2'><q id='2xGh2'><span id='2xGh2'><b id='2xGh2'><form id='2xGh2'><ins id='2xGh2'></ins><ul id='2xGh2'></ul><sub id='2xGh2'></sub></form><legend id='2xGh2'></legend><bdo id='2xGh2'><pre id='2xGh2'><center id='2xGh2'></center></pre></bdo></b><th id='2xGh2'></th></span></q></dt></tr></i><div id='2xGh2'><tfoot id='2xGh2'></tfoot><dl id='2xGh2'><fieldset id='2xGh2'></fieldset></dl></div>

        mysqli_query - 返回值

        时间:2023-07-29

              • <legend id='QKxuE'><style id='QKxuE'><dir id='QKxuE'><q id='QKxuE'></q></dir></style></legend>
                <tfoot id='QKxuE'></tfoot>
                <i id='QKxuE'><tr id='QKxuE'><dt id='QKxuE'><q id='QKxuE'><span id='QKxuE'><b id='QKxuE'><form id='QKxuE'><ins id='QKxuE'></ins><ul id='QKxuE'></ul><sub id='QKxuE'></sub></form><legend id='QKxuE'></legend><bdo id='QKxuE'><pre id='QKxuE'><center id='QKxuE'></center></pre></bdo></b><th id='QKxuE'></th></span></q></dt></tr></i><div id='QKxuE'><tfoot id='QKxuE'></tfoot><dl id='QKxuE'><fieldset id='QKxuE'></fieldset></dl></div>

                <small id='QKxuE'></small><noframes id='QKxuE'>

                • <bdo id='QKxuE'></bdo><ul id='QKxuE'></ul>
                    <tbody id='QKxuE'></tbody>

                  本文介绍了mysqli_query - 返回值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我正在使用 PHP 函数 mysqli_query 运行 SELECT 查询.

                  I am using the PHP function mysqli_query to run a SELECT query.

                  如果查询运行成功,但查询没有找到匹配项,mysqli_query 返回什么?

                  What does mysqli_query return if the query runs successfully, but the query finds no matches?

                  推荐答案

                  根据 手册:

                  失败时返回 FALSE.对于成功的 SELECT、SHOW、DESCRIBE 或 EXPLAIN 查询,mysqli_query() 将返回一个 mysqli_result 对象.对于其他成功的查询,mysqli_query() 将返回 TRUE.

                  Returns FALSE on failure. For successful SELECT, SHOW, DESCRIBE or EXPLAIN queries mysqli_query() will return a mysqli_result object. For other successful queries mysqli_query() will return TRUE.

                  运行但不返回结果的查询仍被视为成功查询",因为该查询确实在数据库中运行并且空结果集是合法响应.这意味着查询仍然会返回一个 mysqli_result 对象,如果你检查它的行数(通过面向对象风格的 $result->num_rowsmysqli_num_rows($result) 在程序风格中)它将返回 0.

                  A query that runs but returns no results is still considered a "successful query", since the query did run in the database and an empty result set is a legitimate response. This means the query will still return a mysqli_result object, and if you check its row count (either via $result->num_rows in the object-oriented style or mysqli_num_rows($result) in the procedural style) it will return 0.

                  这篇关于mysqli_query - 返回值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:新的 Mysqli 对象为空 下一篇:php mysqli 自动提交和回滚的正确使用

                  相关文章

                  最新文章

                • <legend id='2ikh4'><style id='2ikh4'><dir id='2ikh4'><q id='2ikh4'></q></dir></style></legend>

                  <small id='2ikh4'></small><noframes id='2ikh4'>

                  <tfoot id='2ikh4'></tfoot>

                      <bdo id='2ikh4'></bdo><ul id='2ikh4'></ul>
                  1. <i id='2ikh4'><tr id='2ikh4'><dt id='2ikh4'><q id='2ikh4'><span id='2ikh4'><b id='2ikh4'><form id='2ikh4'><ins id='2ikh4'></ins><ul id='2ikh4'></ul><sub id='2ikh4'></sub></form><legend id='2ikh4'></legend><bdo id='2ikh4'><pre id='2ikh4'><center id='2ikh4'></center></pre></bdo></b><th id='2ikh4'></th></span></q></dt></tr></i><div id='2ikh4'><tfoot id='2ikh4'></tfoot><dl id='2ikh4'><fieldset id='2ikh4'></fieldset></dl></div>