|
@@ -281,28 +281,6 @@ abstract class AbstractDao {
|
|
|
return array_pop($result);
|
|
|
}
|
|
|
|
|
|
- public function fetchAll($condition = null, $limit = 10, $order = null, $selectCols = '*') {
|
|
|
- $result = self::findBy($condition, null, $limit, $selectCols, $order);
|
|
|
- if (!$result) {
|
|
|
- return false;
|
|
|
- }
|
|
|
-
|
|
|
- foreach ($result as & $tmpV) {
|
|
|
- $tmpExtend = array();
|
|
|
- $tmpExtend = unserialize($tmpV['extend']);
|
|
|
- unset($tmpV['extend']);
|
|
|
-
|
|
|
- # 将存在扩展字段里的信息提出来
|
|
|
- if (is_array($tmpExtend)) foreach ($tmpExtend as $tmpKK => $tmpVV) {
|
|
|
- if (!in_array($tmpKK, $this->real_field)) {
|
|
|
- $tmpV[$tmpKK] = $tmpVV;
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
-
|
|
|
- return $result;
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* 获取所有
|
|
|
* @param string $order 排序方式。默认以主键倒序;有效的格式:"create_time desc"
|