如何使用 medoo 获取结果集中的行数
How to get the number of rows in a resultset using medoo
我想知道如何获取此语句的结果集中的行数:
$data=$db->query("SELECT name FROM users")->fetchAll();
我需要类似于 mysqli_num_rows
但使用 medoo
的东西。
感谢您的帮助!
文档中有一个 count 方法:
$count = $database->count("users");
试试这个:
Counts行数:
$count = $database->count($table, $where);
由于query()
方法returns一个数组,就用php的count() function判断返回的记录数(不要设置递归方式) .
我想知道如何获取此语句的结果集中的行数:
$data=$db->query("SELECT name FROM users")->fetchAll();
我需要类似于 mysqli_num_rows
但使用 medoo
的东西。
感谢您的帮助!
文档中有一个 count 方法:
$count = $database->count("users");
试试这个: Counts行数:
$count = $database->count($table, $where);
由于query()
方法returns一个数组,就用php的count() function判断返回的记录数(不要设置递归方式) .