Função PHP mysqli_num_fields ()
Definição e Uso
Um objeto de resultado PHP (da classe mysqli_result) representa o resultado MySQL, retornado pelas consultas SELECT ou, DESCRIBE ou EXPLAIN.
A função mysqli_num_fields () aceita um objeto de resultado como parâmetro, recupera e retorna o número de campos no objeto fornecido.
Sintaxe
mysqli_num_fields($result);
Parâmetros
Sr. Não | Parâmetro e Descrição |
---|---|
1 | result(Mandatory) Este é um identificador que representa um objeto de resultado. |
Valores Retornados
A função PHP mysqli_num_fields () retorna um valor inteiro especificando o número de campos no objeto de resultado dado.
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_num_fields () (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
$result = mysqli_query($con, "SELECT * FROM myplayers");
//Number of fields
$count = mysqli_num_fields($result);
print("Number of fields in the result: ".$count);
//Closing the statement
mysqli_free_result($result);
//Closing the connection
mysqli_close($con);
?>
Isso produzirá o seguinte resultado -
Table Created.....
Record Inserted.....
Number of fields in the result: 5
Exemplo
No estilo orientado a objetos, a sintaxe desta função é $ result-> field_count; 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';
//Executing the statement
$stmt->execute();
//Retrieving the result
$result = $stmt->get_result();
//Number of fields
$count = $result->field_count;
print("Number of fields in the result: ".$count);
//Closing the statement
$stmt->close();
//Closing the connection
$con->close();
?>
Isso produzirá o seguinte resultado -
Table Created.....
Number of fields in the result: 2