array ( 0 => 'index.php', 1 => 'PHP Manual', ), 'head' => array ( 0 => 'UTF-8', 1 => 'it', ), '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 Funzioni', ), '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

Avviso

Questa enstensione deprecata da PHP 5.5.0, e sarĂ  rimossa in futuro. Al suo posto, usare l'estensione MySQLi o PDO_MySQL. Vedere anche la guida MySQL: scelta dell'API e le FAQ relative per ulteriori informazioni. Le alternative a questa funzione includono:

Descrizione

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

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

Elenco dei parametri

result

The risultato resource che che viene calcolato. Questo risultato deriva dal una chiamata a mysql_query().

field_offset

L'offset numerico dei campi. field_offset inizia da 0. Se field_offset non esiste, viene generato un errore di livello E_WARNING.

Valori restituiti

The name of the specified field index on success o false in caso di fallimento.

Esempi

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

Il precedente esempio visualizzerĂ :

user_id
password

Note

Nota: I nomi dei campi restituiti da questa funzione sono case-sensitive.

Nota:

Per la compatibilitĂ  all'indietro, i seguenti sinonimi (deprecati) possono essere utilizzati: mysql_fieldname()

Vedere anche: