• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • mysqli_stmt::more_results()

    (PHP 5 >= 5.3.0, PHP 7)

    Check if there are more query results from a multiple query

    说明

    面向对象风格(method):

    publicmysqli_stmt::more_results(void): bool

    过程化风格:

    mysqli_stmt_more_results(mysql_stmt$stmt): bool

    Checks if there are more query results from a multiple query.

    参数

    $stmt

    仅以过程化样式:由mysqli_stmt_init()返回的 statement 标识。

    返回值

    Returns TRUE if more results exist, otherwise FALSE.

    仅 MySQL 原生驱动

    仅可用于mysqlnd。

    参见

    • mysqli_stmt::next_result() Reads the next result from a multiple query
    • mysqli::multi_query() 执行查询