|
PHP5中文手册
PDOStatement->fetchColumn()(PHP 5 >= 5.1.0, PECL pdo:0.9-1.0.3) PDOStatement->fetchColumn() — Returns a single column from the next row of a result set 说明PDOStatement
string fetchColumn
([ int $column_number
] )
Returns a single column from the next row of a result set or FALSE if there are no more rows. 参数
返回值PDOStatement->fetchColumn() returns a single column in the next row of a result set. Warning
There is no way to return another column from the same row if you use PDOStatement->fetchColumn() to retrieve data. 范例
Example#1 Return first column of the next row
<?php 上例将输出:
|