我fetchAll
在zend中有一个功能:
public function fetchAll($where = 1, $order = null, $limit = null, $group = null, array $fields = null)
{
$where = (null == $where) ? 1 : $where;
$fields = (!isset($fields)) ? '*' : $fields;
$select = $this->db->select()
->from("table", $fields)
->where($where)
->order($order)
->group($group)
->limit($limit, $offset);
echo $select; exit;
$result = $this->db->fetchAll($select);
return $this->getResultObjects($result);
}
我可以调用这个函数$this->fetchAll('field = 1', null, 10)
;
我可以$order to null
并且查询可以正常工作,但$group
由于某种原因不能。
我怎样才能做到这一点,以便该组是可选的,并且只有当我坐在某个东西上时才进入?
谢谢