Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/Str/ends_with.php
Назад
<?php declare(strict_types=1); namespace Psl\Str; /** * Returns whether the string ends with the given suffix. * * Example: * * Str\ends_with('Hello, World', 'd') * => Bool(true) * * Str\ends_with('Hello, World', 'D') * => Bool(false) * * Str\ends_with('Hello, World', 'world') * => Bool(false) * * Str\ends_with('Hello, World', 'World') * => Bool(true) * * Str\ends_with('Tunisia', 'e') * => Bool(false) * * Str\ends_with('تونس', 'س') * => Bool(true) * * Str\ends_with('تونس', 'ش') * => Bool(false) * * @pure */ function ends_with(string $string, string $suffix, Encoding $encoding = Encoding::UTF_8): bool { if ($suffix === $string) { return true; } $suffix_length = length($suffix, $encoding); $total_length = length($string, $encoding); if ($suffix_length > $total_length) { return false; } /** @psalm-suppress MissingThrowsDocblock */ $position = search_last($string, $suffix, 0, $encoding); if (null === $position) { return false; } return $position + $suffix_length === $total_length; }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка