downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

mysqli_result::field_seek> <mysqli_result::fetch_row
[edit] Last updated: Sat, 07 Jan 2012

view this page in

mysqli_result::field_count

mysqli_num_fields

(PHP 5)

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

설명

객체 기반 형식

int $mysqli_result->field_count;

절차식 형식

int mysqli_num_fields ( mysqli_result $result )

Returns the number of fields from specified result set.

인수

result

순차 형식 전용: mysqli_query()mysqli_store_result()mysqli_use_result()가 반환한 결과셋 식별자.

반환값

The number of fields from a result set.

예제

Example #1 객체 기반 형식

<?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();
?>

Example #2 절차식 형식

<?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);
?>

위 예제들의 출력:

Result set has 5 fields.

참고



add a note add a note User Contributed Notes mysqli_result::field_count
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites