Funzione PHP mysqli_stmt_bind_param ()
Definizione e utilizzo
Il mysqli_stmt_bind_param() viene utilizzata per associare le variabili agli indicatori di parametro di un'istruzione preparata.
Sintassi
mysqli_stmt_bind_param($stmt, $types, $var1, $var2...);
Parametri
Suor n | Parametro e descrizione |
---|---|
1 |
stmt(Mandatory) Questo è un oggetto che rappresenta un'istruzione preparata. |
2 |
types(Mandatory) Una stringa (di singoli caratteri) che specifica i tipi di variabili dove:
|
3 |
var(Mandatory) Valori per le variabili, separati da virgole. |
Valori restituiti
La funzione PHP mysqli_stmt_bind_param () 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 mostra l'utilizzo della funzione mysqli_stmt_bind_param () (in stile procedurale) -
<?php
//Creating a connection
$con = new mysqli("localhost", "root", "password", "mydb");
//Creating a table
$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");
//Inserting values into the table using prepared statement
$stmt = $con -> prepare( "INSERT INTO myplayers values(?, ?, ?, ?, ?)");
//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.....
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 myplayers(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 myplayers values(?, ?, ?, ?, ?)");
//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.....
Esempio
Di seguito è riportato un altro esempio di questa funzione:
<?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");
$stmt = mysqli_prepare($con, "DELETE FROM test where Age<?");
mysqli_stmt_bind_param($stmt, "i", $num);
$num = 28;
//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.....