(PHP 4, PHP 5)
mysql_field_name — Get the name of the specified field in a result
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:
mysql_field_name() returns the name of the specified field index.
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
.
The name of the specified field index on success o false
in caso di fallimento.
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
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()