array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'uk', ), 'this' => array ( 0 => 'function.mysql-field-name.php', 1 => 'mysql_field_name', 2 => 'Get the name of the specified field in a result', ), 'up' => array ( 0 => 'ref.mysql.php', 1 => 'MySQL Функції', ), 'prev' => array ( 0 => 'function.mysql-field-len.php', 1 => 'mysql_field_len', ), 'next' => array ( 0 => 'function.mysql-field-seek.php', 1 => 'mysql_field_seek', ), 'alternatives' => array ( ), 'source' => array ( 'lang' => 'en', 'path' => 'reference/mysql/functions/mysql-field-name.xml', ), 'history' => array ( ), ); $setup["toc"] = $TOC; $setup["toc_deprecated"] = $TOC_DEPRECATED; $setup["parents"] = $PARENTS; manual_setup($setup); contributors($setup); ?>
(PHP 4, PHP 5)
mysql_field_name — Get the name of the specified field in a result
Це розширення застаріле, починаючи з PHP 5.5.0, та вилучене з PHP 7.0.0. Натомість використовуються розширення MySQLi або PDO_MySQL. Докладніше описано у керівництві MySQL: вибір API. Цю функцію можна замінити на:
mysql_field_name() returns the name of the specified field index.
resultРезультат типу resource для опрацювання, якого повертає функція mysql_query().
field_offsetЧисловий зсув поля.
Значення field_offset починається з 0.
Якщо зсуву field_offset не існує, буде виведено
повідомлення рівня
E_WARNING.
The name of the specified field index on success або false в разі помилки.
Приклад #1 mysql_field_name() example
<?php
/* The users table consists of three fields:
* user_id
* username
* password.
*/
$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');
if (!$link) {
die('Could not connect to MySQL server: ' . mysql_error());
}
$dbname = 'mydb';
$db_selected = mysql_select_db($dbname, $link);
if (!$db_selected) {
die("Could not set $dbname: " . mysql_error());
}
$res = mysql_query('select * from users', $link);
echo mysql_field_name($res, 0) . "\n";
echo mysql_field_name($res, 2);
?>Поданий вище приклад виведе:
user_id password
Зауваження: Ця функція є чутливою до регістру назв полів.
Зауваження:
Для зворотньої сумісності, можна використовувати такий застарілий псевдонім: mysql_fieldname()