Home > Backend Development > PHP Tutorial > 求mysqli取得结果中指定字段的字段名

求mysqli取得结果中指定字段的字段名

WBOY
Release: 2016-06-23 14:16:04
Original
1210 people have browsed it

mysqli取得结果中指定字段的字段名 是哪个 手册里没有找到啊 求高手解答


回复讨论(解决方案)

从数据库出来的数据,不是数组吗。

是一个键值是数字的数组

字段取决于你查询时的字段顺序!!!

好像有个函数叫
mysql_field_name();

这个函数可以返回资源集的字段名

就是你先执行sql查询
把查询到的结果保存到一个变量中
把这个变量 和一个整型数 作为参数
传入这个函数
整型数应该是获得字段名的偏移量

比如你传入0
mysql_field_name($res, 0);
 就从这个$res数据集的第一个字段名开始获取

具体你可以搜索一下这个函数的用法
或者自己测试一下

用一下试试就清楚了

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template