## 1、mysqli_fetch_row()
* 描述:从结果集中取得一行作为枚举数组;
* 格式:
```
array mysqli_fetch_row ( mysqli_result $result )
```
* 返回:返回根据所取得的行生成的数组,如果没有更多行则返回 FALSE。
* 说明:mysqli_fetch_row() 从指定的结果标识关联的结果集中取得一行数据并作为数组返回。每个结果的列储存在一个数组的单元中,偏移量从 0 开始。
* 提示:依次调用mysqli_fetch_row()将返回结果集中的下一行,如果没有更多行则返回FALSE。
![](https://img.kancloud.cn/46/3d/463dc01cca81eecaabb2364698ad61a3_988x266.png)
![](https://img.kancloud.cn/53/0a/530a475052be59f7a11c7197ea8af0a2_910x366.png)
## 2、mysqli_fetch_assoc()
* 描述:从结果集中取得一行作为关联数组
* 语法:
```
array mysqli_fetch_assoc ( mysqli_result $result )
```
* 返回值:从结果集取得的行生成的关联数组,如果没有更多行则返回 FALSE;
* 注意:此函数返回的字段名大小写敏感。
![](https://img.kancloud.cn/da/0d/da0d78e72966131278cbc4131b113d20_931x378.png)
## 3、mysqli_fetch_array()
* 描述:从结果集中取得一行作为关联数组,或数字数组,或二者兼有;
* 语法:
```
array mysqli_fetch_array ( mysqli_result $result [, int $result_type = MYSQLI_BOTH ] )
```
* 参数:$result_type是一个常量,取值:MYSQLI_BOTH(两者兼有,默认)、MYSQLI_ASSOC(关联索引)、MYSQLI_NUM(数字索引)
* 返回:返回根据从结果集取得的行生成的数组,如果没有更多行则返回 FALSE。
* 注意:本函数返回的字段名区分大小写。
![](https://img.kancloud.cn/8c/1c/8c1cc0926e505eb21636e700f1e0fe37_781x384.png)
![](https://img.kancloud.cn/68/7a/687a762cb14041829265e1ca3f218c89_815x275.png)
![](https://img.kancloud.cn/37/54/37545baa0945cc714c8731b6b968e2a6_781x254.png)
4、mysqli_fetch_all()
* 描述:从结果集中取得所有行作为关联数组、枚举数组、或二者兼有
* 语法:
```
mixed mysqli_fetch_all ( mysqli_result $result [, int $resulttype = MYSQLI_NUM ] )
```
![](https://img.kancloud.cn/ff/cc/ffccd6526b576c0800078df5a40454f3_838x457.png)
> 提示:获取数据,要不是获取一条,要不是获取多条。