Home >Database >Mysql Tutorial >mysql中fetch

mysql中fetch

WBOY
WBOYOriginal
2016-06-07 15:17:423267browse

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。

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