PHP mysqli_fetch_all() 函数

PHP 教程 · 2019-01-27 20:13:54

实例

从结果集中取得所有行作为关联数组:

<?php 
// 假定数据库用户名:root,密码:123456,数据库:CODERCTO 
$con=mysqli_connect("localhost","root","123456","CODERCTO"); 
if (
mysqli_connect_errno($con)) 

    echo 
"连接 MySQL 失败: " mysqli_connect_error(); 


$sql="SELECT name,url FROM websites ORDER BY alexa";
$result=mysqli_query($con,$sql);

// 获取数据
mysqli_fetch_all($result,MYSQLI_ASSOC);

// 释放结果集
mysqli_free_result($result);

mysqli_close($con);
?>

定义和用法

mysqli_fetch_all() 函数从结果集中取得所有行作为关联数组,或数字数组,或二者兼有。

注释:该函数只在带有 MySQL Native Driver 时可用。

语法

mysqli_fetch_all(result,resulttype);

参数 描述
result 必需。规定由 mysqli_query()、mysqli_store_result() 或 mysqli_use_result() 返回的结果集标识符。
resulttype 可选。规定应该产生哪种类型的数组。可以是以下值中的一个:
  • MYSQLI_ASSOC
  • MYSQLI_NUM
  • MYSQLI_BOTH

技术细节

返回值: 返回包含结果行的关联数组或数字数组。
PHP 版本: 5.3+

点击查看所有 PHP 教程 文章: https://www.codercto.com/courses/l/5.html

查看所有标签

Concepts, Techniques, and Models of Computer Programming

Concepts, Techniques, and Models of Computer Programming

Peter Van Roy、Seif Haridi / The MIT Press / 2004-2-20 / USD 78.00

This innovative text presents computer programming as a unified discipline in a way that is both practical and scientifically sound. The book focuses on techniques of lasting value and explains them p......一起来看看 《Concepts, Techniques, and Models of Computer Programming》 这本书的介绍吧!

JS 压缩/解压工具
JS 压缩/解压工具

在线压缩/解压 JS 代码

XML、JSON 在线转换
XML、JSON 在线转换

在线XML、JSON转换工具

HSV CMYK 转换工具
HSV CMYK 转换工具

HSV CMYK互换工具