Home > Article > Backend Development > How to use php mysqli_num_rows function
php The mysqli_num_rows function is used to return the number of rows in the result set. Its syntax is mysqli_num_rows(result), and the parameter result is required.
php How to use the mysqli_num_rows function?
Definition and usage
mysqli_num_rows() function returns the number of rows in the result set.
Syntax
mysqli_num_rows(result);
Parameters
result Required. Specifies the result set identifier returned by mysqli_query(), mysqli_store_result(), or mysqli_use_result().
Return value: Returns the number of rows in the result set.
PHP version: 5
Return the number of rows in the result set:
<?php // 假定数据库用户名:root,密码:123456,数据库:RUNOOB $con=mysqli_connect("localhost","root","123456","RUNOOB"); if (mysqli_connect_errno($con)) { echo "连接 MySQL 失败: " . mysqli_connect_error(); } $sql = "SELECT name,url FROM websites ORDER BY alexa;"; if ($result=mysqli_query($con,$sql)) { // 返回记录数 $rowcount=mysqli_num_rows($result); printf("总共返回 %d 行数据。",$rowcount); // 释放结果集 mysqli_free_result($result); } mysqli_close($con); ?>
The above is the detailed content of How to use php mysqli_num_rows function. For more information, please follow other related articles on the PHP Chinese website!