Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/Str/replace_ci.php
Назад
<?php declare(strict_types=1); namespace Psl\Str; use Psl\Regex; use function preg_quote; use function preg_split; /** * Returns the '$haystack' string with all occurrences of `$needle` replaced by * `$replacement` (case-insensitive). * * @pure * * @throws Exception\InvalidArgumentException if $needle is not a valid UTF-8 string. */ function replace_ci(string $haystack, string $needle, string $replacement, Encoding $encoding = Encoding::UTF_8): string { if ('' === $needle || null === search_ci($haystack, $needle, 0, $encoding)) { return $haystack; } try { /** @var list<string> */ $pieces = Regex\Internal\call_preg( 'preg_split', static fn() => preg_split('{' . preg_quote($needle, '/') . '}iu', $haystack, -1), ); } catch (Regex\Exception\RuntimeException | Regex\Exception\InvalidPatternException $error) { throw new Exception\InvalidArgumentException($error->getMessage(), previous: $error); } return join($pieces, $replacement); }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка