Home > Database > Mysql Tutorial > mysql中fetch

mysql中fetch

WBOY
Release: 2016-06-07 15:17:42
Original
3268 people have browsed it

1.fetch_array:返回关系型数组或数字索引型数组, 读取数据的时候我们可以用比如:$result[1] 或者是$result[username]。 2.fetch_assoc:返回关系型数组, 读取数据的时候我们可以用比如:$result[username]。 3.fetch_row:返回数字索引型数组, 读取数据

1.fetch_array:返回关系型数组或数字索引型数组,读取数据的时候我们可以用比如:$result[1] 或者是$result["username"]。

2.fetch_assoc:返回关系型数组,读取数据的时候我们可以用比如:$result["username"]。

3.fetch_row:返回数字索引型数组,读取数据的时候我们可以用比如:$result[1]

4.fetch_object: 返回对象,读取数据的时候我们可以用比如:$result->username。

Related labels:
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