Home  >  Article  >  Backend Development  >  php获取字段名示例分享_PHP

php获取字段名示例分享_PHP

WBOY
WBOYOriginal
2016-06-01 11:56:25898browse

复制代码 代码如下:
$link = mysql_connect('localhost', 'username', 'password');
$fields = mysql_list_fields("database", "table", $link);
$columns = mysql_num_fields($fields);
$field = false;
for ($i = 0; $i     $field .= "'".mysql_field_name($fields, $i) . "',";
}
print $field;

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn