Funzione PHP mysqli_stmt_param_count ()
Definizione e utilizzo
Il mysqli_stmt_param_count() funzione accetta un oggetto istruzione (preparato) come parametro e restituisce il numero di indicatori di parametro in esso contenuti.
Sintassi
mysqli_stmt_param_count($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_param_count () di PHP restituisce un valore intero che indica il numero di indicatori di parametro nell'istruzione preparata fornita.
Versione PHP
Questa funzione è stata introdotta per la prima volta nella versione 5 di PHP e funziona in tutte le versioni successive.
Esempio
Supponiamo di aver creato una tabella denominata dipendente nel database MySQL con il seguente contenuto $ meno;
mysql> select * from employee;
+------------+--------------+------+------+--------+
| FIRST_NAME | LAST_NAME | AGE | SEX | INCOME |
+------------+--------------+------+------+--------+
| Vinay | Bhattacharya | 20 | M | 21000 |
| Sharukh | Sheik | 25 | M | 23300 |
| Trupthi | Mishra | 24 | F | 51000 |
| Sheldon | Cooper | 25 | M | 2256 |
| Sarmista | Sharma | 28 | F | 15000 |
+------------+--------------+------+------+--------+
5 rows in set (0.00 sec)
L'esempio seguente mostra l'utilizzo della funzione mysqli_stmt_param_count () (in stile procedurale) -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
$stmt = mysqli_prepare($con, "UPDATE employee set INCOME=INCOME-? where INCOME>=?");
mysqli_stmt_bind_param($stmt, "si", $reduct, $limit);
$limit = 20000;
$reduct = 5000;
//Executing the statement
mysqli_stmt_execute($stmt);
print("Records Updated......\n");
//Affected rows
$count = mysqli_stmt_param_count($stmt);
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
print("Rows affected ".$count);
?>
Questo produrrà il seguente risultato:
Records Updated......
Rows affected 3
Esempio
Nello stile orientato agli oggetti la sintassi di questa funzione è $ stmt-> param_count; 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 myplayers(ID INT, First_Name VARCHAR(255), Last_Name VARCHAR(255), Place_Of_Birth VARCHAR(255), Country VARCHAR(255))");
print("Table Created.....\n");
$stmt = $con -> prepare( "INSERT INTO myplayers values(?, ?, ?, ?, ?)");
$stmt -> bind_param("issss", $id, $fname, $lname, $pob, $country);
$id = 1;
$fname = 'Shikhar';
$lname = 'Dhawan';
$pob = 'Delhi';
$country = 'India';
//Executing the statement
$stmt->execute();
//Affected rows
$count = $stmt ->param_count;
print("Number of parameters: ".$count);
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Questo produrrà il seguente risultato:
Table Created.....
Records Deleted.....
Number of parameters: 5