array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'tr', ), '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 İşlevleri', ), '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); ?>

mysql_field_name

(PHP 4, PHP 5)

mysql_field_nameGet the name of the specified field in a result

Uyarı

Bu eklentinin kullanımı PHP 5.5.0 itibariyle önerilmemekte olup PHP 7.0.0'da kaldırılmıştır. Bu eklentinin yerine ya mysqli ya da PDO_MySQL eklentisi kullanılmalıdır. MySQL API seçerken MySQL API'ye Bakış belgesi yardımcı olabilir. Bu işlevin yerine kullanılabilecekler:

Açıklama

mysql_field_name(resource $result, int $field_offset): string|false

mysql_field_name() returns the name of the specified field index.

Bağımsız Değişkenler

sonuç

resource türünde sorgu sonucu. Bu sonuç bir mysql_query() çağrısının sonucudur.

alan_konumu

Alanın sayısal konumu. 0'dan başlar. Eğer bir alan konumu yoksa E_WARNING seviyesinde bir hata üretilir.

Dönen Değerler

The name of the specified field index on success başarısızlık durumunda false döner.

Örnekler

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

Yukarıdaki örneğin çıktısı:

user_id
password

Notlar

Bilginize: Bu işlevden dönen alan isimlerinin harf büyüklüklerinde değişiklik yapılmaz.

Bilginize:

Geriye uyumluluk adına, kullanımı önerilmese de şu takma ad kullanılabilir: mysql_fieldname()

Ayrıca Bakınız