Najnowsze tutoriale tworzenie stron internetowych
 

PHP mysqli_num_fields() Function

<PHP MySQLi referencyjny

Przykład

Zwraca liczbę pól (columns) w zbiorze wyników:

<?php
$con=mysqli_connect("localhost","my_user","my_password","my_db");
// Check connection
if (mysqli_connect_errno())
  {
  echo "Failed to connect to MySQL: " . mysqli_connect_error();
  }

$sql="SELECT Lastname,Age FROM Persons ORDER BY Lastname";

if ($result=mysqli_query($con,$sql))
  {
  // Return the number of fields in result set
  $fieldcount=mysqli_num_fields($result);
  printf("Result set has %d fields.\n",$fieldcount);
  // Free result set
  mysqli_free_result($result);
  }

mysqli_close($con);
?>

Definicja i Wykorzystanie

mysqli_num_fields() zwraca liczbę pól (columns) w zbiorze wyników.


Składnia

mysqli_num_fields( result ) ;

Parametr Opis
result Wymagany. Określa identyfikator zestawu wynik zwracany przez mysqli_query() , mysqli_store_result() lub mysqli_use_result()

Szczegóły techniczne

Zwracana wartość: Zwraca liczbę pól w zbiorze wynikowym
Wersja PHP: 5+

<PHP MySQLi referencyjny