下面一起来了解下MySQLi_more_results 的定义和使用方法,相信大家看完肯定会受益匪浅,文字在精不在多,希望MySQLi_more_results 的定义和使用方法这篇短内容是你想要的。
版本支持
语法
mysqli_more_results ( mysqli $link )
检查上一次调用 mysqli_multi_query() 函数之后, 是否还有更多的查询结果集。
参数
参数 | 必需的 | 描述 |
---|
link | 是 | 由mysqli_connect() 或 mysqli_init() 返回的链接标识。 |
返回值
如果上一次调用 mysqli_multi_query() 函数之后, 还有更多的结果集可以读取,返回 TRUE,否则返回 FALSE。
示例
<?php
$link = mysqli_connect("localhost", "my_user", "my_password", "world");
/* 检查连接 */
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$query = "SELECT CURRENT_USER();";
$query .= "SELECT Name FROM City ORDER BY ID LIMIT 20, 5";
/* 批量执行查询 */
if (mysqli_multi_query($link, $query)) {
do {
/* store first result set */
if ($result = mysqli_store_result($link)) {
while ($row = mysqli_fetch_row($result)) {
printf("%s\n", $row[0]);
}
mysqli_free_result($result);
}
/* print divider */
if (mysqli_more_results($link)) {
printf("-----------------\n");
}
} while (mysqli_next_result($link));
}
/* 关闭连接 */
mysqli_close($link);
相关函数
mysqli_multi_query() - 执行查询
mysqli_next_result() - 为读取 multi_query 执行之后的下一个结果集做准备
mysqli_store_result() - 转移上一次查询返回的结果集
mysqli_use_result() - 启动结果集检索
看完MySQLi_more_results 的定义和使用方法这篇文章后,很多读者朋友肯定会想要了解更多的相关内容,如需获取更多的行业信息,可以关注我们的行业资讯栏目。