Funzione mysqli_stmt_reset () di PHP
Definizione e utilizzo
Il mysqli_stmt_reset()la funzione accetta un oggetto istruzione preparato (aperto in precedenza) come parametro e lo resetta, cioè cambia resetta gli errori, i set di risultati senza buffer ei dati inviati. La query, le associazioni e le serie di risultati archiviate non verranno modificate.
Sintassi
mysqli_stmt_reset($stmt);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | con(Mandatory) Questo è un oggetto che rappresenta un'istruzione preparata. |
Valori restituiti
La funzione mysqli_stmt_reset () di PHP restituisce un valore booleano che è vero in caso di successo e falso in caso di fallimento.
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_reset () (in stile procedurale) -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
mysqli_query($con, "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");
mysqli_query($con, "INSERT INTO myplayers values(1, 'Sikhar', 'Dhawan', 'Delhi', 'India')");
mysqli_query($con, "INSERT INTO myplayers values(2, 'Jonathan', 'Trott', 'CapeTown', 'SouthAfrica')");
print("Record Inserted.....\n");
//Retrieving the contents of the table
$stmt = mysqli_prepare($con, "SELECT * FROM myplayers");
//Executing the statement
mysqli_stmt_execute($stmt);
$res = mysqli_stmt_reset($stmt);
if($res){
print("Reset Successful");
}
//Binding values in result to variables
$res = mysqli_stmt_bind_result($stmt, $id, $fname, $lname, $pob, $country);
while (mysqli_stmt_fetch($stmt)) {
print("Id: ".$id."\n");
print("fname: ".$fname."\n");
print("lname: ".$lname."\n");
print("pob: ".$pob."\n");
print("country: ".$country."\n");
print("\n");
}
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Questo produrrà il seguente risultato:
Record Inserted.....
Reset Successful
Dato che resettiamo l'istruzione nel mezzo, il contenuto del risultato non viene stampato senza la funzione di reset questo programma genera il seguente output -
Record Inserted.....
Reset Successful
E:\PHPExamples>php procedure_oriented.php
Table Created.....
Record Inserted.....
Id: 1
fname: Sikhar
lname: Dhawan
pob: Delhi
country: India
Id: 2
fname: Jonathan
lname: Trott
pob: CapeTown
country: SouthAfrica
Esempio
Nello stile orientato agli oggetti la sintassi di questa funzione è $ stmt-> close (); 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");
//Creating a table
$con -> query("CREATE TABLE players(ID INT, First_Name VARCHAR(255), Last_Name VARCHAR(255), Place_Of_Birth VARCHAR(255), Country VARCHAR(255))");
print("Table Created.....\n");
//Inserting values into the table using prepared statement
$stmt = $con -> prepare( "INSERT INTO players values(?, ?, ?, ?, ?)");
$res = $stmt->reset();
if($res){
print("Reset Successful");
}
//Binding values to the parameter markers
$stmt -> bind_param("issss", $id, $fname, $lname, $pob, $country);
$id = 1;
$fname = 'Shikhar';
$lname = 'Dhawan';
$pob = 'Delhi';
$country = 'India';
//Executing the statement
$stmt->execute();
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Questo produrrà il seguente risultato:
Table Created.....
Reset Successful
E il contenuto del tavolo dei giocatori sarà vuoto -
mysql> drop table players;
Query OK, 0 rows affected (0.26 sec)
Se rimuovi la funzione reset () ed esegui il programma sopra, il contenuto della tabella dei giocatori sarà il seguente:
mysql> select * from players;
+------+------------+-----------+----------------+---------+
| ID | First_Name | Last_Name | Place_Of_Birth | Country |
+------+------------+-----------+----------------+---------+
| 1 | Shikhar | Dhawan | Delhi | India |
+------+------------+-----------+----------------+---------+
1 row in set (0.00 sec)