mysqli_stmt::next_result
mysqli_stmt::next_result
mysqli_stmt_next_result
(PHP 5 >= 5.3.0, PHP 7)
mysqli_stmt :: next_result - mysqli_stmt_next_result - 从多个查询中读取下一个结果
描述
面向对象的风格(方法):
public bool mysqli_stmt::next_result ( void )
程序风格:
bool mysqli_stmt_next_result ( mysql_stmt $stmt )
从多个查询中读取下一个结果。
参数
`stmt`
仅过程风格:由mysqli_stmt_init()返回的语句标识符。
返回值
TRUE
成功或FALSE
失败时返回。
错误/异常
E_STRICT
如果结果集不存在,则发出级别错误,并在调用mysqli_stmt :: next_result()
之前建议在这些情况下使用mysqli_stmt :: more_results()
。
仅限MySQL本地驱动程序
仅适用于mysqlnd。