Pad both sides of the string to a specific length.
Twine\Str::padBoth( int $length [, string $padding = ' ' ] ) : Twine\Str
$length | Length to pad the string to |
$padding | Character to pad the string with |
$string = new Twine\Str('john pinkerton');
$string->padBoth(20, '_'); // Returns '___john pinkerton___'