Função PHP mysqli_stmt_num_rows ()
Definição e Uso
o mysqli_stmt_num_rows() A função aceita um objeto de instrução como parâmetro e retorna o número de linhas no conjunto de resultados da instrução fornecida.
Sintaxe
mysqli_stmt_num_rows($stmt)
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | stmt(Mandatory) Este é um objeto que representa uma instrução que executa uma consulta SQL. |
Valores Retornados
A função PHP mysqli_stmt_num_rows () retorna um valor inteiro indicando o número de linhas no conjunto de resultados retornado pela instrução.
Versão PHP
Esta função foi introduzida pela primeira vez no PHP Versão 5 e funciona em todas as versões posteriores.
Exemplo
O exemplo a seguir demonstra o uso da função mysqli_stmt_num_rows () (no estilo procedural) -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
mysqli_query($con, "CREATE TABLE Test(Name VARCHAR(255), AGE INT)");
print("Table Created.....\n");
mysqli_query($con, "insert into Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)");
print("Records Inserted.....\n");
//Reading records
$stmt = mysqli_prepare($con, "SELECT * FROM Test");
//Executing the statement
mysqli_stmt_execute($stmt);
mysqli_stmt_store_result($stmt);
//Number of rows
$count = mysqli_stmt_num_rows($stmt);
print("Number of rows in the table: ".$count."\n");
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Isso produzirá o seguinte resultado -
Table Created.....
Records Inserted.....
Number of rows in the table: 3
Exemplo
No estilo orientado a objetos, a sintaxe desta função é $ con> num_rows; A seguir está o exemplo desta função no estilo orientado a objetos $ minus;
<?php
//Creating a connection
$con = new mysqli("localhost", "root", "password", "mydb");
$con -> query("CREATE TABLE Test(Name VARCHAR(255), AGE INT)");
print("Table Created.....\n");
$con -> query("insert into Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)");
print("Records Inserted.....\n");
$stmt = $con -> prepare( "SELECT * FROM Test");
//Executing the statement
$stmt->execute();
$stmt->store_result();
//Number of rows
$count = $stmt ->num_rows;
print("Rows affected ".$count);
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Isso produzirá o seguinte resultado -
Table Created.....
Records Inserted.....
Number of rows in the table: 3
Exemplo
Suponha que criamos uma tabela chamada cricketers com os seguintes dados $ minus;
mysql> select * from cricketers;
+----+------------+------------+---------------+----------------+
| ID | First_Name | Last_Name | Date_Of_Birth | Place_Of_Birth |
+----+------------+------------+---------------+----------------+
| 1 | Shikhar | Dhawan | 1981-12-05 | Delhi |
| 2 | Jonathan | Trott | 1981-04-22 | CapeTown |
| 3 | Kumara | Sangakkara | 1977-10-27 | Matale |
| 4 | Virat | Kohli | 1988-11-05 | Delhi |
| 5 | Rohit | Sharma | 1987-04-30 | Nagpur |
| 6 | Ravindra | Jadeja | 1988-12-06 | Nagpur |
+----+------------+------------+---------------+----------------+
6 rows in set (0.07 sec)
Se você tentar invocar esta função diretamente, uma vez que os resultados ainda não foram armazenados, ela retornará 0 -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
//Reading records
$stmt = mysqli_prepare($con, "SELECT * FROM cricketers");
//Executing the statement
mysqli_stmt_execute($stmt);
print("Number of rows in the table: ".mysqli_stmt_num_rows($stmt));
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Isso produzirá o seguinte resultado -
Number of rows in the table: 0