我有下一个代码:
$parent_priority = $data['priority'];
$where = $this->getAdapter()->quoteInto('priority >= ?', $parent_priority);
$columns = array ('id',
'title',
'enabled',
'description',
'pv',
'gv',
'mps', 'priority',
);
$select_data = $this->select()->from($this->_name, $columns);
$ranks = $this->fetchAll($select_data)->toArray();
但Zend在行$ranks = $this->fetchAll($select_data)->toArray();
我如何解决这个问题?
答案 0 :(得分:-3)
在'优先级'之后,从数组中取消最后一个“,”。