Skip to content

Kirby 4.1.2

Str::short()

Shortens a string and adds an ellipsis if the string is too long

Str::short(?string $string = null, int $length = 0, string $appendix = '…'): string

Parameters

Name Type Default Description
$string string|null null The string to be shortened
$length int 0 The final number of characters the
string should have
$appendix string '…' The element, which should be added if the
string is too long. Ellipsis is the default.

Return type

string

Parent class

Kirby\Toolkit\Str