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/split.php
<?php declare(strict_types=1); namespace Psl\Str\Byte; use function explode; /** * Returns an array containing the string split on the given delimiter. The vec * will not contain the delimiter itself. * * If the limit is provided, the array will only contain that many elements, where * the last element is the remainder of the string. * * @param null|positive-int $limit * * @return list<string> * * @pure */ function split(string $string, string $delimiter, ?int $limit = null): array { if ('' === $delimiter) { if (null === $limit || $limit >= length($string)) { return chunk($string); } if (1 === $limit) { return [$string]; } $length = $limit - 1; $result = chunk(slice($string, 0, $length)); $result[] = slice($string, $length); return $result; } if (null === $limit) { /** @var list<string> */ return explode($delimiter, $string); } /** @var list<string> */ return explode($delimiter, $string, $limit); }
Copyright ©2021 || Defacer Indonesia