whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Str
/
Byte
/
Upload File:
files >> /home/kckglobal/www/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); }
Copyright ©2021 || Defacer Indonesia