PDOStatement::fetchAll
以陣列方式傳回結果集內的資料列。
語法
array PDOStatement::fetchAll([ $fetch_style[, $column_index ][, ctor_args]] );
參數
$fetch_style:指定資料列資料格式的 (整數) 符號。 如需值清單,請參閱 PDOStatement::fetch 。 也允許 PDO::FETCH_COLUMN。 PDO::FETCH_BOTH 是預設值。
$column_index:代表當 $fetch_style 為 PDO::FETCH_COLUMN 時所要傳回之資料行的整數值。 0 是預設值。
$ctor_args:當 $fetch_style 為 PDO::FETCH_CLASS 或 PDO::FETCH_OBJ 時,類別建構函式的參數陣列。
傳回值
結果集內剩餘的資料列陣列,如果方法呼叫失敗,則傳回 false。
備註
Microsoft Drivers for PHP for SQL Server 2.0 版已新增 PDO 支援。
範例
<?php
$server = "(local)";
$database = "AdventureWorks";
$conn = new PDO( "sqlsrv:server=$server ; Database = $database", "", "");
print "-----------\n";
$stmt = $conn->query( "select * from Person.ContactType where ContactTypeID < 5 " );
$result = $stmt->fetchall(PDO::FETCH_BOTH);
print_r( $result );
print "\n-----------\n";
print "-----------\n";
$stmt = $conn->query( "select * from Person.ContactType where ContactTypeID < 5 " );
$result = $stmt->fetchall(PDO::FETCH_NUM);
print_r( $result );
print "\n-----------\n";
$stmt = $conn->query( "select * from Person.ContactType where ContactTypeID < 5 " );
$result = $stmt->fetchall(PDO::FETCH_COLUMN, 1);
print_r( $result );
print "\n-----------\n";
class cc {
function __construct( $arg ) {
echo "$arg\n";
}
function __toString() {
echo "To string\n";
}
};
$stmt = $conn->query( 'SELECT TOP(2) * FROM Person.ContactType' );
$all = $stmt->fetchAll( PDO::FETCH_CLASS, 'cc', array( 'Hi!' ));
var_dump( $all );
?>