PHP-zend framework fetchAll问题
在表模型里写了个方法,如下
/**
* 话题查询
* @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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Zend_Db_Table_Rowset是迭代器的封装,可以直接像数组一样操作
$result = $this->fetchAll($select);
foreach($result as $key => $value){
echo $value->tid;
}
也可以转换成数组
$result = $result->toArray();