(PHP 4, PHP 5)
mysql_field_name — ȡ�ý����ָ���ֶε��ֶ���
$result
, int $field_index
) : string
mysql_field_name()
����ָ���ֶ��������ֶ�����result
������һ���Ϸ��Ľ����ʶ����field_index
�Ǹ��ֶε�����ƫ������
Note:
field_index
�� 0 ��ʼ�����磬�������ֶε�����ֵ��ʵ�� 2�����ĸ��ֶε�����ֵ�� 3���Դ����ơ�
Note: �˺������ص��ֶ�����Сд������
Example #1 mysql_field_name() ����
<?php
/* The users table consists of three fields:
* user_id
* username
* password.
*/
$link = mysql_connect('localhost', "mysql_user", "mysql_password");
$dbname = "mydb";
mysql_select_db($dbname, $link)
or 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()����������������
result
resource �͵Ľ�������˽�������Զ� mysql_query() �ĵ��á�
field_offset
��ֵ���ֶ�ƫ������
field_offset
�� 0 ��ʼ�����
field_offset
�����ڣ���ᷢ��һ��
E_WARNING
����Ĵ���
The name of the specified field index on success ������ʧ��ʱ���� FALSE
.
Example #2 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
Note: �˺������ص��ֶ�����Сд������
Note:
Ϊ�����¼��ݣ�����ʹ�������ѷ����ı����� mysql_fieldname()