PHP mysqli_next_result() 函数 PHP mysqli_multi_query() 函数 PHP mysqli_num_fields() 函数 PHP mysqli_next_result() 函数 执行多个针对数据库的查询。请使用 mysqli_next_result() 函数来准备下一个结果集: <?php // 假定数据库用户名:root,密码:123456,数据库:codingdict $con=mysqli_connect("localhost","root","123456","codingdict"); if (mysqli_connect_errno($con)) { echo "连接 MySQL 失败: " . mysqli_connect_error(); } $sql = "SELECT name FROM websites ORDER BY alexa;"; $sql .= "SELECT app_name FROM apps"; // 执行多个查询 if (mysqli_multi_query($con,$sql)) { do { // 存储第一个结果集 if ($result=mysqli_store_result($con)) { while ($row=mysqli_fetch_row($result)) { printf("%s",$row[0]); echo "<br>"; } } } while (mysqli_next_result($con)); } mysqli_close($con); ?> 定义和用法 mysqli_next_result() 函数为 mysqli_multi_query() 准备下一个结果集。 语法 mysqli_next_result( _connection_ ) _;_php 参数 描述 _connection_ 必需。规定要使用的 MySQL 连接。 技术细节 返回值: 如果成功则返回 TRUE,如果失败则返回 FALSE。 PHP 版本: 5+ PHP mysqli_multi_query() 函数 PHP mysqli_num_fields() 函数