8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2f62c4a commit b7ed1c1Copy full SHA for b7ed1c1
src/Symfony/Component/Console/Helper/Table.php
@@ -805,7 +805,7 @@ private function calculateColumnsWidth(iterable $groups)
805
$textContent = Helper::removeDecoration($this->output->getFormatter(), $cell);
806
$textLength = Helper::width($textContent);
807
if ($textLength > 0) {
808
- $contentColumns = str_split($textContent, ceil($textLength / $cell->getColspan()));
+ $contentColumns = mb_str_split($textContent, ceil($textLength / $cell->getColspan()));
809
foreach ($contentColumns as $position => $content) {
810
$row[$i + $position] = $content;
811
}
0 commit comments