使用Zend DB框架从MySQL中只获取一行

时间:2011-08-23 12:46:24

标签: php mysql zend-framework

我想从数据库中只获取一行,因为我只期望一行。但是,使用fetchAll我总是必须首先打开数组才能访问肉类:

$result = self::$db->fetchAll($select);
$result = $result[0];

有更好的解决方案吗?

2 个答案:

答案 0 :(得分:14)

您也可以使用fetchRow方法,即:

$result = self::$db->fetchRow($select);
// note that $result is a single object, not an array of objects

现在您可以像这样访问列名

  $myResult = $result->columnName;

请参阅 http://framework.zend.com/manual/1.11/en/zend.db.adapter.html#zend.db.adapter.select.fetchrow

答案 1 :(得分:6)

您可以使用fetch方法。试试这个:

$result = self::$db->query($select)->fetch();

参考: http://framework.zend.com/manual/en/zend.db.statement.html#zend.db.statement.fetching.fetch