123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- <?php
- namespace fphammerle\helpers\table;
- class Table
- {
- use \fphammerle\helpers\PropertyAccessTrait;
- private $_rows = [];
-
- public function __construct($cell_values = [])
- {
- foreach($cell_values as $row_index => $row_values) {
- $this->setRow($row_index, new Row($row_values));
- }
- }
-
- public function getRow($row_index)
- {
- if(!is_int($row_index) || $row_index < 0) {
- throw new \InvalidArgumentException(
- sprintf('row index must be an integer >= 0, %s given', print_r($row_index, true))
- );
- }
- if(!isset($this->_rows[$row_index])) {
- $this->_rows[$row_index] = new Row;
- }
- return $this->_rows[$row_index];
- }
-
- public function appendRow(Row $row)
- {
- $this->_rows[] = $row;
- }
-
- public function setRow($row_index, Row $row)
- {
- if(!is_int($row_index) || $row_index < 0) {
- throw new \InvalidArgumentException(
- sprintf('row index must be an integer >= 0, %s given', print_r($row_index, true))
- );
- }
- $this->_rows[$row_index] = $row;
- }
-
- public function getCell($row_index, $column_index)
- {
- return $this->getRow($row_index)->getCell($column_index);
- }
-
- public function setCellValue($row_index, $column_index, $value)
- {
- $this->getCell($row_index, $column_index)->value = $value;
- }
-
- public function getColumnsCount()
- {
- return sizeof($this->_rows) > 0
- ? max(array_map(function($r) { return $r->columnsCount; }, $this->_rows))
- : 0;
- }
-
- public function getRowsCount()
- {
- return sizeof($this->_rows) > 0
- ? max(array_keys($this->_rows)) + 1
- : 0;
- }
-
- public function toCSV($delimiter = ',')
- {
- $columns_number = $this->columnsCount;
- $empty_row_csv = (new Row)->toCSV($delimiter, $columns_number);
- $rows_csv = [];
- $rows_number = sizeof($this->_rows) > 0 ? max(array_keys($this->_rows)) + 1 : 0;
- for($row_index = 0; $row_index < $rows_number; $row_index++) {
- $rows_csv[] = isset($this->_rows[$row_index])
- ? $this->_rows[$row_index]->toCSV($delimiter, $columns_number)
- : $empty_row_csv;
- }
- return implode('', $rows_csv);
- }
-
- public static function fromAssociativeArray(array $rows)
- {
- $keys = [];
- foreach($rows as $row) {
- $keys = array_unique(array_merge($keys, array_keys($row)));
- }
-
- $keys = array_values($keys);
- $t = new self([$keys]);
- foreach($rows as $row) {
- $t->appendRow(new Row(array_map(
- function($key) use ($row) {
- return array_key_exists($key, $row) ? $row[$key] : null;
- },
- $keys
- )));
- }
- return $t;
- }
- }
|