Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/Str/Byte/splice.php
Назад
<?php declare(strict_types=1); namespace Psl\Str\Byte; use Psl\Str; use function substr_replace; /** * Return the string with a slice specified by the offset/length replaced by the * given replacement string. * * If the length is omitted or exceeds the upper bound of the string, the * remainder of the string will be replaced. If the length is zero, the * replacement will be inserted at the offset. * * @param int<0, max> $length * * @pure * * @throws Str\Exception\OutOfBoundsException If $offset is out-of-bounds. */ function splice(string $string, string $replacement, int $offset, ?int $length = null): string { $offset = Str\Internal\validate_offset($offset, length($string)); return null === $length ? substr_replace($string, $replacement, $offset) : substr_replace($string, $replacement, $offset, $length); }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка