PDOStatement::columnCount — 傳回結果集中的列數。 (PHP 5 >= 5.1.0, PECL pdo >= 0.2.0)
int PDOStatement::columnCount ( void )
使用PDOStatement::columnCount() 傳回由PDOStatement 物件代表的結果集中的列數。
如果是由PDO::query() 傳回的PDOStatement 對象,則列數計算立即可用。
如果是由PDO::prepare() 傳回的PDOStatement 對象,則在呼叫PDOStatement::execute() 之前都無法準確地計算出列數。
傳回由PDOStatement 物件代表的結果集中的列數。如果沒有結果集,則PDOStatement::columnCount() 傳回0。
下面範例示範如何使用PDOStatement::columnCount() 來操作一個結果集和一個空集合。
<?php$dbh = new PDO('odbc:sample', 'db2inst1', 'ibmdb2');$sth = $dbh->prepare("SELECT name, colour FROM fruit");/* 計算一個(不存在)的結果集中的列數*/$colcount = $sth->columnCount();print("Before execute(), result set has $colcount columns (should be 0)n");$sth->execute();/* 計算結果集中的列數*/$colcount = $sth->columnCount();print("After execute( ), result set has $colcount columns (should be 2)n");?>
以上例程會輸出:
Before execute(), result set has 0 columns (should be 0)After execute(), result set has 2 columns (should be 2)