<?php $strippedText = $this->stripAnsi($text);
$width = $this->getFullWidth($columnWidths);
$halfWidth = intdiv($width, 2);
$halfTextWidth = intdiv(strlen($strippedText), 2);
return str_repeat(' ', $halfWidth - $halfTextWidth) . $text . str_repeat(' ', $halfWidth - $halfTextWidth) . "\n";