whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Str
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Str/truncate.php
<?php declare(strict_types=1); namespace Psl\Str; use function mb_strimwidth; /** * Get truncated string with specified width. * * @param int $offset The start position offset. Number of * characters from the beginning of string. (First character is 0) * @param int $width the width of the desired trim * @param string|null $trim_marker a string that is added to the end of string * when string is truncated * * @throws Exception\OutOfBoundsException If the offset is out-of-bounds. * * @return string The truncated string. If trim_marker is set, * trim_marker is appended to the return value. * * @pure */ function truncate( string $string, int $offset, int $width, ?string $trim_marker = null, Encoding $encoding = Encoding::UTF_8 ): string { $offset = Internal\validate_offset($offset, length($string, $encoding)); return mb_strimwidth($string, $offset, $width, $trim_marker ?? '', $encoding->value); }
Copyright ©2021 || Defacer Indonesia