PHP PDOStatement::fetchAll讲解
pdostatement::fetchall
pdostatement::fetchall — 返回一个包含结果集中所有行的数组(php 5 >= 5.1.0, pecl pdo >= 0.1.0)
说明
语法
array pdostatement::fetchall ([ int $fetch_style [, mixed $fetch_argument [, array $ctor_args = array() ]]] )
参数
fetch_style
- 控制下一行如何返回给调用者。此值必须是 pdo::fetch_* 系列常量中的一个,缺省为 pdo::attr_default_fetch_mode 的值 (默认为 pdo::fetch_both )。
- 想要返回一个包含结果集中单独一列所有值的数组,需要指定 pdo::fetch_column 。通过指定 column-index 参数获取想要的列。
- 想要获取结果集中单独一列的唯一值,需要将 pdo::fetch_column 和 pdo::fetch_unique 按位或。
- 想要返回一个根据指定列把值分组后的关联数组,需要将 pdo::fetch_column 和 pdo::fetch_group 按位或。
fetch_argument
根据 fetch_style 参数的值,此参数有不同的意义:
- pdo::fetch_column :返回指定以0开始索引的列。
- pdo::fetch_class :返回指定类的实例,映射每行的列到类中对应的属性名。
- pdo::fetch_func :将每行的列作为参数传递给指定的函数,并返回调用函数后的结果。
ctor_args
当 fetch_style 参数为 pdo::fetch_class 时,自定义类的构造函数的参数。
返回值
pdostatement::fetchall()
返回一个包含结果集中所有剩余行的数组。此数组的每一行要么是一个列值的数组,要么是属性对应每个列名的一个对象。
使用此方法获取大结果集将导致系统负担加重且可能占用大量网络资源。与其取回所有数据后用php来操作,倒不如考虑使用数据库服务来处理结果集。例如,在取回数据并通过php处理前,在sql 中使用 where 和 order by 子句来限定结果。
实例
获取结果集中所有剩余的行
<?php $sth = $dbh->prepare("select name, colour from fruit"); $sth->execute(); /* 获取结果集中所有剩余的行 */ print("fetch all of the remaining rows in the result set:\n"); $result = $sth->fetchall(); print_r($result); ?>
以上实例的输出为:
fetch all of the remaining rows in the result set: array ( [0] => array ( [name] => pear [0] => pear [colour] => green [1] => green ) [1] => array ( [name] => watermelon [0] => watermelon [colour] => pink [1] => pink ) )
获取结果集中单独一列的所有值
下面例子演示了如何从一个结果集中返回单独一列所有的值,尽管 sql 语句自身可能返回每行多列。
<?php $sth = $dbh->prepare("select name, colour from fruit"); $sth->execute(); /* 获取第一列所有值 */ $result = $sth->fetchall(pdo::fetch_column, 0); var_dump($result); ?>
以上实例的输出为:
array(3) ( [0] => string(5) => apple [1] => string(4) => pear [2] => string(10) => watermelon )
根据单独的一列把所有值分组
下面例子演示了如何返回一个根据结果集中指定列的值分组的关联数组。该数组包含三个键:返回的 apple 和 pear 数组包含了两种不同的颜色,而返回的 watermelon 数组仅包含一种颜色。
<?php $insert = $dbh->prepare("insert into fruit(name, colour) values (?, ?)"); $insert->execute(array('apple', 'green')); $insert->execute(array('pear', 'yellow')); $sth = $dbh->prepare("select name, colour from fruit"); $sth->execute(); /* 根据第一列分组 */ var_dump($sth->fetchall(pdo::fetch_column|pdo::fetch_group)); ?>
以上实例的输出为:
array(3) { ["apple"]=> array(2) { [0]=> string(5) "green" [1]=> string(3) "red" } ["pear"]=> array(2) { [0]=> string(5) "green" [1]=> string(6) "yellow" } ["watermelon"]=> array(1) { [0]=> string(5) "green" } }
每行结果实例化一个类
下面列子演示了 pdo::fetch_class 获取风格的行为。
<?php class fruit { public $name; public $colour; } $sth = $dbh->prepare("select name, colour from fruit"); $sth->execute(); $result = $sth->fetchall(pdo::fetch_class, "fruit"); var_dump($result); ?>
以上实例的输出为:
array(3) { [0]=> object(fruit)#1 (2) { ["name"]=> string(5) "apple" ["colour"]=> string(5) "green" } [1]=> object(fruit)#2 (2) { ["name"]=> string(4) "pear" ["colour"]=> string(6) "yellow" } [2]=> object(fruit)#3 (2) { ["name"]=> string(10) "watermelon" ["colour"]=> string(4) "pink" } }
每行调用一次函数
下面列子演示了 pdo::fetch_func 获取风格的行为。
<?php function fruit($name, $colour) { return "{$name}: {$colour}"; } $sth = $dbh->prepare("select name, colour from fruit"); $sth->execute(); $result = $sth->fetchall(pdo::fetch_func, "fruit"); var_dump($result); ?>
以上实例的输出为:
array(3) { [0]=> string(12) "apple: green" [1]=> string(12) "pear: yellow" [2]=> string(16) "watermelon: pink" }
总结
以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对的支持。如果你想了解更多相关内容请查看下面相关链接
上一篇: Nginx平滑升级的详细操作方法