Função PHP mysqli_stmt_bind_param ()
Definição e Uso
o mysqli_stmt_bind_param() função é usada para vincular variáveis aos marcadores de parâmetro de uma instrução preparada.
Sintaxe
mysqli_stmt_bind_param($stmt, $types, $var1, $var2...);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 |
stmt(Mandatory) Este é um objeto que representa uma declaração preparada. |
2 |
types(Mandatory) Uma string (de caracteres individuais) especificando os tipos de variáveis onde -
|
3 |
var(Mandatory) Valores para as variáveis, separados por vírgulas. |
Valores Retornados
A função PHP mysqli_stmt_bind_param () retorna um valor booleano que é verdadeiro em caso de sucesso e falso em caso de falha.
Versão PHP
Esta função foi introduzida pela primeira vez no PHP Versão 5 e funciona em todas as versões posteriores.
Exemplo
O exemplo a seguir demonstra o uso da função mysqli_stmt_bind_param () (no estilo procedural) -
<?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();
?>
Isso produzirá o seguinte resultado -
Table Created.....
Exemplo
No estilo orientado a objetos, a sintaxe desta função é $ stmt-> close (); A seguir está o exemplo desta função no estilo orientado a objetos $ 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();
?>
Isso produzirá o seguinte resultado -
Table Created.....
Exemplo
A seguir está outro exemplo desta função -
<?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);
?>
Isso produzirá o seguinte resultado -
Table Created.....