下面一起来了解下MySQLi_more_results 的定义和使用方法,相信大家看完肯定会受益匪浅,文字在精不在多,希望MySQLi_more_results 的定义和使用方法这篇短内容是你想要的。
PHP4 | PHP5 | PHP7 |
---|---|---|
不支持 | 支持 | 支持 |
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 的定义和使用方法这篇文章后,很多读者朋友肯定会想要了解更多的相关内容,如需获取更多的行业信息,可以关注我们的行业资讯栏目。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。