PHP PDOStatement::setFetchMode()
PHP PDOStatement::setFetchMode() 为语句设置默认的获取模式
(PHP 5 >= 5.1.0, PECL pdo >= 0.2.0)
函数原型
bool PDOStatement::setFetchMode ( int $mode )
bool PDOStatement::setFetchMode ( int $PDO::FETCH_COLUMN , int $colno )
bool PDOStatement::setFetchMode ( int $PDO::FETCH_CLASS , string $classname , array $ctorargs )
bool PDOStatement::setFetchMode ( int $PDO::FETCH_INTO , object $object )
参数
参数 | 描述 |
---|---|
mode | 获取模式必须是 PDO::FETCH_* 系列常量中的一个 |
colno | 列号 |
classname | 类名 |
ctorargs | 构造函数参数 |
object | 对象 |
返回值
成功时返回 TRUE, 或者在失败时返回 FALSE
范例 : 设置获取模式
如何用 PDOStatement::setFetchMode() 来为一个 PDOStatement 对象更改默认的获取模式
<?php $sql = 'SELECT name, colour, calories FROM fruit'; try { $stmt = $dbh->query($sql); $rs = $stmt->setFetchMode(PDO::FETCH_NUM); while ($row = $stmt->fetch()) { echo $row[0] , "\t" , $row[1] , "\t",$row[2],"\n"; } } catch (PDOException $e) { print $e->getMessage(); }
运行以上 PHP 范例,输出结果可能如下
apple red 150 banana yellow 250 orange orange 300 kiwi brown 75 lemon yellow 25 pear green 150 watermelon pink 90