PHP-zend framework fetchAll问题

发布于 2016-10-24 11:41:51 字数 992 浏览 1158 评论 1

在表模型里写了个方法,如下

/**
* 话题查询
* @param $where 查询条件,字符串或者数组
* @param $order 排序规则
* @param $limit limit条件
* @return null || array
*/
public function getTopics($where = null, $order = null, $limit = null){
$select = $this->select();
if(is_string($where)){
$select->where();
}
if(is_array($where) && count($where) > 0){
foreach($where as $key => $value){
$select->where($key .' = ?', $value);
}
}
if($order){
$select->order($order);
}
if($limit){
$select->limit($limit);
}
$result = $this->fetchAll($select);
if($result->count() > 0){
return $result;
}else{
return null;
}
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

偏爱自由 2017-02-14 23:00:41

Zend_Db_Table_Rowset是迭代器的封装,可以直接像数组一样操作

$result = $this->fetchAll($select);
foreach($result as $key => $value){
echo $value->tid;
}

也可以转换成数组

 $result = $result->toArray();

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文