作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
如何从 zend 查询中获取变量?
我有一个查询将返回一条记录。然后我想从该记录中获取一个字段并将其设置为变量。有什么想法吗?
查询: 公共(public)函数 getProContestedReview($contest_review_id) { $adapter = $this->getAdapter();
$sql = new Sql($adapter);
$select = $sql->select();
$select->from('contest_review_table')
->join(array('review' => 'review_table'),
'review.review_id = contest_review_table.review_id')
->join(array('friend' => 'friend_table'),
'friend.friend_id = review.friend_id')
->join(array('pro' => 'pro_table'),
'pro.pro_id = review.pro_id')
->join(array('verification' => 'verification_status'),
'verification.status_id = contest_review_table.contest_review_status_id')
->where(array(
'contest_review_id' => $contest_review_id,
));
$selectString = $sql->getSqlStringForSqlObject($select);
$resultSet = $adapter->query($selectString, $adapter::QUERY_MODE_EXECUTE);
return $resultSet;
}
我想将变量 $friend_id 设置为查询中的好友 ID。
$friend_id = $this->getProContestedReview->friend_id
最佳答案
如果你使用
vardump($resultSet);
你可以看到返回的结果到底是什么。
你可能会使用
$friend_id = $resultSet['friend_id'];
或
$proContestedReview = $this->getProContestedReview($some_id_variable);
$friend_id = $proContestedReview['friend_id'];
关于php - 如何从 Zend SQL 结果集中获取变量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27000772/
我是一名优秀的程序员,十分优秀!