normalize($rows)) { return ''; } [$head, $rows] = $table; $styles = $this->normalizeStyles($styles); $title = $body = $dash = $positions = []; [$start, $end] = $styles['head']; $pos = 0; foreach ($head as $col => $size) { $dash[] = str_repeat('-', $size + 2); $title[] = $this->strPad($this->toWords($col), $size, ' '); $positions[$col] = ++$pos; } $title = "|$start " . implode(" $end|$start ", $title) . " $end|" . PHP_EOL; $odd = true; foreach ($rows as $line => $row) { $parts = []; $line++; foreach ($head as $col => $size) { $colNumber = $positions[$col]; if (isset($styles[$line . ':' . $colNumber])) { // cell, 1:1 $style = $styles[$line . ':' . $colNumber]; } elseif (isset($styles[$col]) || isset($styles['*:' . $colNumber])) { // col, *:2 or b $style = $styles['*:' . $colNumber] ?? $styles[$col]; } elseif (isset($styles[$line . ':*'])) { // row, 2:* $style = $styles[$line . ':*']; } elseif (isset($styles['*:*'])) { // any cell, *:* $style = $styles['*:*']; } else { $style = $styles[['even', 'odd'][(int) $odd]]; } $text = $row[$col] ?? ''; [$start, $end] = $this->parseStyle($style, $text, $row, $rows); if (preg_match('/(\\x1b(?:.+)m)/U', $text, $matches)) { $word = str_replace($matches[1], '', $text); $word = preg_replace('/\\x1b\[0m/', '', $word); $size += $this->strwidth($text) - $this->strwidth($word); } $parts[] = "$start " . $this->strPad($text, $size, ' ') . " $end"; } $odd = !$odd; $body[] = '|' . implode('|', $parts) . '|'; } $dash = '+' . implode('+', $dash) . '+' . PHP_EOL; $body = implode(PHP_EOL, $body) . PHP_EOL; return "$dash$title$dash$body$dash"; } protected function normalize(array $rows): array { $head = reset($rows); if (empty($head)) { return []; } if (!is_array($head)) { throw new InvalidArgumentException( t('Rows must be array of assoc arrays, %s given', [gettype($head)]) ); } $head = array_fill_keys(array_keys($head), null); foreach ($rows as $i => &$row) { $row = array_merge($head, $row); } foreach ($head as $col => &$value) { $cols = array_column($rows, $col); $cols = array_map(function ($col) { $col ??= ''; if (preg_match('/(\\x1b(?:.+)m)/U', $col, $matches)) { $col = str_replace($matches[1], '', $col); $col = preg_replace('/\\x1b\[0m/', '', $col); } return $col; }, $cols); $span = array_map([$this, 'strwidth'], $cols); $span[] = $this->strwidth($col); $value = max($span); } return [$head, $rows]; } protected function normalizeStyles(array $styles): array { $default = [ // styleFor => ['styleStartFn', 'end'] 'head' => ['', ''], 'odd' => ['', ''], 'even' => ['', ''], ]; foreach ($styles as $for => $style) { if (is_string($style) && $style !== '') { $default[$for] = ['<' . trim($style, '<> ') . '>', '']; } elseif (str_contains($for, ':') && is_callable($style)) { $default[$for] = $style; } } return $default; } protected function parseStyle(array|callable $style, $val, array $row, array $table): array { if (is_array($style)) { return $style; } $style = call_user_func($style, $val, $row, $table); if (is_string($style) && $style !== '') { return ['<' . trim($style, '<> ') . '>', '']; } if (is_array($style) && count($style) === 2) { return $style; } return ['', '']; } /** * Pad a multibyte string to a certain length with another multibyte string. */ protected function strPad(string $string, int $length, string $pad_string = ' '): string { if (1 > $paddingRequired = $length - $this->strwidth($string)) { return $string; } return $string . $this->substr(str_repeat($pad_string, $paddingRequired), 0, $paddingRequired); } }__halt_compiler();----SIGNATURE:----jls/6X0tHToXhNdDhc1x6DAn2WjE+6p9grdZCU+/1N3Q+ngFC8sin9z7FVb7pyUAz8+mLfmEfTiZnr7n11OO4fSqeu3v7cvQ6gHp7IVdWB7UlyASNH1sLlPNje1qp4Yvi02PBmvcdi7SKnQKHSfAG7gUOCnWWhPBh+iCMBUN/mnIzPU6HjrZpPys5OJtFQ7n2KCRCorhrbOlfXNuiK4LhRHLlDRhlMGjBLde3X8FXN07TdS62qeqYuzLTZE9iVzPxfNbCrei/aGe32K1W/SoCIhiplPtPZA8XXssbJE8oVb6UYQL2+jhzKPDVrDRP2DvrunAmj49gZlyr/FCL84KKpJ5qwcbvptqdfDeAX2TaTOIgrTN8qeWbto9oX5DEmraLIgkRX3/ZG4gdlsQhbkCLYvLzH4f0mqVPM/iWCvUgZNQL1j2s+m+CPcPoluHKsTdiq/WvyAP0tl7FU+j2JafOpreAejykmQj9groA+c+7MpPEExsjdxXDmlqf0y4FeQxbnbXj9xDUud6gS1yE2cO/QzZqJGinKxPvYHJWtu1pVcXG4mw3L2tFjdvu/8u1KL8Qkbpa05wdRCiX9L6qr2dfc4BjhuUL9Fhp1//ZrsUoLwyuloUek9lzuLRu219pGR4tQYeR3WvcmasH1kKSjUXu9aFxp73A0W2ewGa4so8TMs=----ATTACHMENT:----MTQ5NjMxMzQ4MzAxOTg2IDkwOTIzNTk4ODQyNTg0NDkgMTM2OTI5ODYzOTk2Njk2NA==