|
 |
mysqli_stmt_num_rows (PHP 5) mysqli_stmt_num_rows (no version information, might be only in CVS) stmt->num_rows -- Return the number of rows in statements result set DescriptionProcedural style : int mysqli_stmt_num_rows ( mysqli_stmt stmt ) Object oriented style (property): class mysqli_stmt { int num_rows }
Returns the number of rows in the result set.
The use of mysqli_stmt_num_rows()
depends on whether or not you used
mysqli_stmt_store_result() to buffer the entire result
set in the statement handle.
If you use mysqli_stmt_store_result(),
mysqli_stmt_num_rows() may be called immediately.
Возвращаемые значения
An integer representing the number of rows in result set.
ПримерыПример 1. Object oriented style
<?php
$mysqli = new mysqli("localhost", "my_user", "my_password", "world");
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$query = "SELECT Name, CountryCode FROM City ORDER BY Name LIMIT 20";
if ($stmt = $mysqli->prepare($query)) {
$stmt->execute();
$stmt->store_result();
printf("Number of rows: %d.\n", $stmt->num_rows);
$stmt->close();
}
$mysqli->close();
?>
|
|
Пример 2. Procedural style
<?php
$link = mysqli_connect("localhost", "my_user", "my_password", "world");
if (mysqli_connect_errno()) {
printf("Connect failed: %s\n", mysqli_connect_error());
exit();
}
$query = "SELECT Name, CountryCode FROM City ORDER BY Name LIMIT 20";
if ($stmt = mysqli_prepare($link, $query)) {
mysqli_stmt_execute($stmt);
mysqli_stmt_store_result($stmt);
printf("Number of rows: %d.\n", mysqli_stmt_num_rows($stmt));
mysqli_stmt_close($stmt);
}
mysqli_close($link);
?>
|
|
Результат выполнения данного примера:
mysqli_stmt_num_rows
There are no user contributed notes for this page.
| |