Zend 版本1.12.3 官網如今最新的Zend1版本 php
Zend\Db\Statement.php fetch
沒事看源碼發現的由於是Zend就分享下 this
代碼以下 .net
public function fetchColumn($col = 0) { $data = array(); //無用 $col = (int) $col; $row = $this->fetch(Db::FETCH_NUM); if (!is_array($row)) { return false; } return $row[$col]; }
http://www.oschina.net/code/explore/ZendFramework-1.11.1/library/Zend/Db/Statement.php code