请帮忙!知道为什么要打印:
数组 ( [0] => stdClass Object ( [jobid] => 1 ) )而不是它的值?
$this->dbo->setFetchMode(Zend_Db::FETCH_OBJ);
$userOffer = $this->dbo->select()
->from('offer', array('jobid'))
->where('userid'.' = ?', $userID);
$userAccept = $this->dbo->select()
->from('acceptance', array('jobid'))
->where("userid".' = ?', $userID);
$select = $this->dbo->select()
->union(array($userOffer, $userAccept))
->order("jobid");
while ($row = $this->dbo->fetchAll($select)) {
print_r ($row);
//return $row;
}