whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Str
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Str/concat.php
<?php declare(strict_types=1); namespace Psl\Str; /** * Concat all given strings into one. * * Example: * * Str\concat('a', 'b', 'c'); * => Str('abc') * * Str\concat('foo', ...['a', 'b']); * => Str('fooab') * * @pure */ function concat(string $string, string ...$rest): string { foreach ($rest as $str) { $string .= $str; } return $string; }
Copyright ©2021 || Defacer Indonesia