PDOStatement::setFetchMode

(PHP 5 >= 5.1.0, PHP 7, PHP 8, PECL pdo >= 0.2.0)

PDOStatement::setFetchMode 为语句设置默认的获取模式

说明

public PDOStatement::setFetchMode(int $mode): bool
public PDOStatement::setFetchMode(int $mode = PDO::FETCH_COLUMN, int $colno): bool
public PDOStatement::setFetchMode(int $mode = PDO::FETCH_CLASS, string $class, ?array $constructorArgs = null): bool
public PDOStatement::setFetchMode(int $mode = PDO::FETCH_INTO, object $object): bool

参数

mode

获取模式必须是 PDO::FETCH_* 系列常量中的一个。

colno

列号。

class

类名。

constructorArgs

构造方法参数。

object

对象。

返回值

成功时返回 true, 或者在失败时返回 false

范例

示例 #1 设置获取模式

以下示例演示了 PDOStatement::setFetchMode() 如何更改 PDOStatement 对象的默认获取模式。

<?php
$stmt
= $dbh->query('SELECT name, colour, calories FROM fruit');
$stmt->setFetchMode(PDO::FETCH_NUM);
foreach (
$stmt as $row) {
print
$row[0] . "\t" . $row[1] . "\t" . $row[2] . "\n";
}

以上例程的输出类似于:

apple   red     150
banana  yellow  250
orange  orange  300
kiwi    brown   75
lemon   yellow  25
pear    green   150

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top