Funzione mysqli_stmt_num_rows () di PHP
Definizione e utilizzo
Il mysqli_stmt_num_rows() funzione accetta un oggetto istruzione come parametro e restituisce il numero di righe nel set di risultati dell'istruzione data.
Sintassi
mysqli_stmt_num_rows($stmt)
Parametri
Suor n | Parametro e descrizione |
---|---|
1 |
stmt(Mandatory) Questo è un oggetto che rappresenta un'istruzione che esegue una query SQL. |
Valori restituiti
La funzione mysqli_stmt_num_rows () di PHP restituisce un valore intero che indica il numero di righe nel set di risultati restituito dall'istruzione.
Versione PHP
Questa funzione è stata introdotta per la prima volta nella versione 5 di PHP e funziona in tutte le versioni successive.
Esempio
L'esempio seguente dimostra l'utilizzo della funzione mysqli_stmt_num_rows () (in stile procedurale) -
<?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);
?>
Questo produrrà il seguente risultato:
Table Created.....
Records Inserted.....
Number of rows in the table: 3
Esempio
Nello stile orientato agli oggetti la sintassi di questa funzione è $ con> num_rows; Di seguito è riportato l'esempio di questa funzione nello stile orientato agli oggetti $ 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();
?>
Questo produrrà il seguente risultato:
Table Created.....
Records Inserted.....
Number of rows in the table: 3
Esempio
Supponiamo di aver creato una tabella chiamata cricketers con i seguenti dati $ meno;
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 provi a richiamare direttamente questa funzione, poiché i risultati non sono ancora stati memorizzati, restituisce 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);
?>
Questo produrrà il seguente risultato:
Number of rows in the table: 0