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/before_last.php
<?php declare(strict_types=1); namespace Psl\Str\Byte; use Psl\Str\Exception; /** * @throws Exception\OutOfBoundsException If the $offset is out-of-bounds. * * @pure */ function before_last( string $haystack, string $needle, int $offset = 0 ): ?string { $length = search_last($haystack, $needle, $offset); if (null === $length) { return null; } return slice($haystack, 0, $length); }
Copyright ©2021 || Defacer Indonesia