Funzione PHP mysqli_stmt_prepare ()
Definizione e utilizzo
Il mysqli_stmt_prepare() la funzione prepara un'istruzione SQL per l'esecuzione, è possibile utilizzare i marcatori di parametro ("?") in questa query, specificarne i valori ed eseguirla successivamente.
Sintassi
mysqli_stmt_prepare($stmt, $str);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 |
stmt(Mandatory) Questo è un oggetto che rappresenta un'istruzione (restituita dalla funzione mysqli_stmt_init ()). |
2 |
str(Mandatory) Questo è un valore stringa che specifica la query richiesta. |
Valori restituiti
Questa funzione restituisce un valore booleano vcalue 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 mostra l'utilizzo della funzione mysqli_stmt_prepare () (in stile procedurale) -
<?php
$con = mysqli_connect("localhost", "root", "password", "mydb");
$query = "CREATE TABLE Test(Name VARCHAR(255), AGE INT)";
mysqli_query($con, $query);
print("Table Created.....\n");
//Initializing the statement
$stmt = mysqli_stmt_init($con);
mysqli_stmt_prepare($stmt, "INSERT INTO Test values(?, ?)");
mysqli_stmt_bind_param($stmt, "si", $Name, $Age);
$Name = 'Raju';
$Age = 25;
print("Record Inserted.....");
//Executing the statement
mysqli_stmt_execute($stmt);
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Questo produrrà il seguente risultato:
Table Created.....
Record Inserted.....
Esempio
Nello stile orientato agli oggetti la sintassi di questa funzione è $ stmt-> prepare (); Di seguito è riportato l'esempio di questa funzione nello stile orientato agli oggetti $ minus;
<?php
$con = new mysqli("localhost", "root", "password", "mydb");
$query = "CREATE TABLE Test(Name VARCHAR(255), AGE INT)";
$con->query($query);
print("Table Created.....\n");
//Initializing the statement
$stmt = $con->stmt_init();
$stmt->prepare("INSERT INTO Test values(?, ?)");
$stmt->bind_param("si", $Name, $Age);
$Name = 'Raju';
$Age = 25;
print("Record Inserted.....");
//Executing the statement
$stmt->execute();
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Questo produrrà il seguente risultato:
Table Created.....
Record Inserted.....
Esempio
Vediamo un altro esempio di questa funzione che utilizza la query SELECT (in stile orientato agli oggetti) -
<?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");
$con -> query("INSERT INTO myplayers values(1, 'Sikhar', 'Dhawan', 'Delhi', 'India')");
$con -> query("INSERT INTO myplayers values(2, 'Jonathan', 'Trott', 'CapeTown', 'SouthAfrica')");
$con -> query("INSERT INTO myplayers values(3, 'Kumara', 'Sangakkara', 'Matale', 'Srilanka')");
$con -> query("INSERT INTO myplayers values(4, 'Virat', 'Kohli', 'Delhi', 'India')");
print("Records Inserted.....\n");
//Initiating the statement object
$stmt = $con->stmt_init();
$stmt -> prepare("SELECT * FROM myplayers WHERE country=?");
$stmt -> bind_param("s", $country);
$country = "India";
//Executing the statement
$stmt->execute();
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Questo produrrà il seguente risultato:
Table Created.....
Records Inserted.....