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.
Description Procedural style :
mixed
mysqli_stmt_num_rows ( object stmt)
Object oriented style (property):
class
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.
Return values
An integer representing the number of rows in result set.
Example Example 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 ();
?>
Example 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 );
?>
The above examples would produce the following output:
Copyright © 2001-2004 The PHP Group All rights reserved.