Função PHP mysqli_stmt_bind_result ()
Definição e Uso
o mysqli_stmt_bind_result()função é usada para vincular as colunas de um conjunto de resultados a variáveis. Após vincular as variáveis, você precisa invocar a função mysqli_stmt_fetch () para obter os valores das colunas nas variáveis especificadas.
Sintaxe
mysqli_stmt_bind_result($stmt, $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 | var1(Mandatory) Isso representa a (s) variável (s) a serem associadas às colunas. |
Valores Retornados
A função PHP mysqli_stmt_bind_result () 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_result () (no estilo procedural) -
<?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')");
mysqli_query($con, "INSERT INTO myplayers values(3, 'Kumara', 'Sangakkara', 'Matale', 'Srilanka')");
print("Record Inserted.....\n");
//Retrieving the contents of the table
$stmt = mysqli_prepare($con, "SELECT * FROM myplayers");
//Executing the statement
mysqli_stmt_execute($stmt);
//Binding values in result to variables
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);
?>
Isso produzirá o seguinte resultado -
Table Created.....
Record Inserted.....
Id: 1
fname: Sikhar
lname: Dhawan
pob: Delhi
country: India
Id: 2
fname: Jonathan
lname: Trott
pob: CapeTown
country: SouthAfrica
Id: 3
fname: Kumara
lname: Sangakkara
pob: Matale
country: Srilanka
Exemplo
No estilo orientado a objetos, a sintaxe desta função é $ stmt-> bind_result (); 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");
$con -> query("CREATE TABLE Test(Name VARCHAR(255), AGE INT)");
$con -> query("insert into Test values('Raju', 25),('Rahman', 30),('Sarmista', 27)");
print("Table Created.....\n");
$stmt = $con -> prepare( "SELECT * FROM Test WHERE Name in(?, ?)");
$stmt -> bind_param("ss", $name1, $name2);
$name1 = 'Raju';
$name2 = 'Rahman';
print("Records Deleted.....\n");
//Executing the statement
$stmt->execute();
//Binding variables to resultset
$stmt->bind_result($name, $age);
while ($stmt->fetch()) {
print("Name: ".$name."\n");
print("Age: ".$age."\n");
}
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Isso produzirá o seguinte resultado -
Table Created.....
Records Deleted.....
Name: Raju
Age: 25
Name: Rahman
Age: 30
Exemplo
O exemplo a seguir busca os resultados da consulta DESCRIBE usando as funções mysqli_stmt_bind_result () e mysqli_stmt_fetch () -
<?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");
//Description of the table
$stmt = mysqli_prepare($con, "DESC myplayers");
//Executing the statement
mysqli_stmt_execute($stmt);
//Binding values in result to variables
mysqli_stmt_bind_result($stmt, $field, $type, $null, $key, $default, $extra);
while (mysqli_stmt_fetch($stmt)) {
print("Field: ".$field."\n");
print("Type: ".$type."\n");
print("Null: ".$null."\n");
print("Key: ".$key."\n");
print("Default: ".$default."\n");
print("Extra: ".$extra."\n");
print("\n");
}
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Isso produzirá o seguinte resultado -
Table Created.....
Field: ID
Type: int(11)
Null: YES
Key:
Default:
Extra:
Field: First_Name
Type: varchar(255)
Null: YES
Key:
Default:
Extra:
Field: Last_Name
Type: varchar(255)
Null: YES
Key:
Default:
Extra:
Field: Place_Of_Birth
Type: varchar(255)
Null: YES
Key:
Default:
Extra:
Field: Country
Type: varchar(255)
Null: YES
Key:
Default:
Extra:
Exemplo
O exemplo a seguir busca os resultados da consulta SHOW TABLES usando as funções mysqli_stmt_bind_result () e mysqli_stmt_fetch () -
<?php
$con = mysqli_connect("localhost", "root", "password");
//Selecting the database
mysqli_query($con, "CREATE DATABASE NewDatabase");
mysqli_select_db($con, "NewDatabase");
//Creating tables
mysqli_query($con, "CREATE TABLE test1(Name VARCHAR(255), Age INT)");
mysqli_query($con, "CREATE TABLE test2(Name VARCHAR(255), Age INT)");
mysqli_query($con, "CREATE TABLE test3(Name VARCHAR(255), Age INT)");
print("Tables Created.....\n");
//Description of the table
$stmt = mysqli_prepare($con, "SHOW TABLES");
//Executing the statement
mysqli_stmt_execute($stmt);
//Binding values in result to variables
mysqli_stmt_bind_result($stmt, $table_name);
print("List of tables in the current database: \n");
while (mysqli_stmt_fetch($stmt)) {
print($table_name."\n");
}
//Closing the statement
mysqli_stmt_close($stmt);
//Closing the connection
mysqli_close($con);
?>
Isso produzirá o seguinte resultado -
Tables Created.....
List of tables in the current database:
test1
test2
test3