Рекурсивный акроним словосочетания «PHP: Hypertext Preprocessor»
Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 16411 программистов и 1784 робота. Сейчас ищут 2094 программиста ...
fbsql_field_name - Get the name of the specified field in a result
Вернуться к: FrontBase Функции
fbsql_field_name
(PHP 4 >= 4.0.6, PHP 5, PHP 7)
fbsql_field_name — Get 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.
Примеры
Пример #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($res, 0) . "\n";
echo fbsql_field_name($res, 2);
?>
Результат выполнения данного примера:
user_id password
Вернуться к: FrontBase Функции