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:

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top