我想从数据库中只获取一行,因为我只期望一行。但是,使用fetchAll
我总是必须首先打开数组才能访问肉类:
$result = self::$db->fetchAll($select);
$result = $result[0];
有更好的解决方案吗?
答案 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