list = array(); foreach ($items as $k => $v) { array_push($this->list, new StatementDetail($v)); } } /** * 条目信息 * @return StatementDetail[] */ public function getList() { return $this->list; } }