mysqli_result::$field_count

mysqli_num_fields

(PHP 5, PHP 7)

mysqli_result::$field_count -- mysqli_num_fieldsGet the number of fields in a result

Opis

Styl obiektowy

Styl proceduralny

mysqli_num_fields ( mysqli_result $result ) : int

Returns the number of fields from specified result set.

Parametry

wynik

Tylko styl proceduralny: Identyfikator zbioru wyników zwróconych przez mysqli_query(), mysqli_store_result() lub mysqli_use_result().

Zwracane wartości

The number of fields from a result set.

Przykłady

Przykład #1 Styl obiektowy

<?php
$mysqli 
= new mysqli("localhost""my_user""my_password""world");

/* check connection */
if (mysqli_connect_errno()) {
    
printf("Connect failed: %s\n"mysqli_connect_error());
    exit();
}

if (
$result $mysqli->query("SELECT * FROM City ORDER BY ID LIMIT 1")) {

    
/* determine number of fields in result set */
    
$field_cnt $result->field_count;

    
printf("Result set has %d fields.\n"$field_cnt);

    
/* close result set */
    
$result->close();
}

/* close connection */
$mysqli->close();
?>

Przykład #2 Styl proceduralny

<?php
$link 
mysqli_connect("localhost""my_user""my_password""world");

/* check connection */
if (mysqli_connect_errno()) {
    
printf("Connect failed: %s\n"mysqli_connect_error());
    exit();
}

if (
$result mysqli_query($link"SELECT * FROM City ORDER BY ID LIMIT 1")) {

    
/* determine number of fields in result set */
    
$field_cnt mysqli_num_fields($result);

    
printf("Result set has %d fields.\n"$field_cnt);

    
/* close result set */
    
mysqli_free_result($result);
}

/* close connection */
mysqli_close($link);
?>

Powyższe przykłady wyświetlą:

Result set has 5 fields.

Zobacz też:

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top