mysqli_num_rows
时间: 2023-06-21 11:09:23 浏览: 129
php.zip_mysql 显示
mysqli_num_rows() 是一个 PHP 函数,用于获取 MySQL 查询结果集中的行数。它接受一个结果集作为参数,返回结果集中行的数量。例如:
```php
$result = mysqli_query($con, "SELECT * FROM users");
$num_rows = mysqli_num_rows($result);
echo "There are " . $num_rows . " rows in the users table.";
```
这将输出类似于 "There are 50 rows in the users table." 的消息,表示 users 表中有 50 行数据。
阅读全文