update : 2015.11.03
php.shukuma.com

검색:
 
 
Get the name of the specified field in a result

fbsql_field_name

(PHP 4 >= 4.0.6, PHP 5, PHP 7)

fbsql_field_nameGet the name of the specified field in a result

설명

string fbsql_field_name ( resource $result [, int $field_index ] )

Returns the name of the specified field index.

인수

result

A result pointer returned by fbsql_list_fields().

field_index

The numerical offset of the field. The field index starts at 0.

반환값

Returns the name as a string, or FALSE if the field doesn't exist.

예제

Example #1 fbsql_field_name() example

<?php
// The users table consists of three fields:
//   user_id
//   username
//   password.

$res fbsql_db_query("users""select * from users"$link);

echo 
fbsql_field_name($res0) . "\n";
echo 
fbsql_field_name($res2);
?>

위 예제의 출력:

user_id
password

참고