您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
下面一起来了解下使用PHP mysqli_num_rows函数方法,相信大家看完肯定会受益匪浅,文字在精不在多,希望使用PHP mysqli_num_rows函数方法这篇短内容是你想要的。
mysqli_num_rows - 获取结果中的行数
PHP4 | PHP5 | PHP7 |
---|---|---|
不支持 | 支持 | 支持 |
mysqli_num_rows ( mysqli_result $result )
返回结果集中的行数。 mysqli_num_rows的行为取决于是否使用缓冲的或未缓冲的结果集。 对于无缓冲的结果集,在检索到结果中的所有行之前,mysqli_num_rows不会返回正确的行数。
参数 | 必需的 | 描述 |
---|---|---|
result | 是 | 由 mysqli_query(),mysqli_store_result() 或 mysqli_use_result() 返回的结果集标识。 |
返回结果集中的行数。如果行数大于PHP_INT_MAX,则该数字将作为字符串返回。
$link = mysqli_connect("localhost", "my_user", "my_password", "world"); /* check connection */ if (mysqli_connect_errno()) { printf("Connect failed: %s\n", mysqli_connect_error()); exit(); } if ($result = mysqli_query($link, "SELECT Code, Name FROM Country ORDER BY Name")) { /* determine number of rows result set */ $row_cnt = mysqli_num_rows($result); printf("Result set has %d rows.\n", $row_cnt); /* close result set */ mysqli_free_result($result); } /* close connection */ mysqli_close($link);
看完使用PHP mysqli_num_rows函数方法这篇文章后,很多读者朋友肯定会想要了解更多的相关内容,如需获取更多的行业信息,可以关注我们的行业资讯栏目。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。