data = $data; $this->headings = $headings; $this->startCell = $startCell; } public function array(): array { return $this->data; } public function headings(): array { // 定義標題列 return $this->headings ?? array_keys($this->data[0]); } public function startCell(): string { return $this->startCell ?? 'A1'; } }