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/format.php
<?php declare(strict_types=1); namespace Psl\Str; use function vsprintf; /** * Return a formatted string. * * Examples: * * Str\format('Hello, %s', 'azjezz') * => Str('Hello, azjezz') * * Str\format('%s is %d character(s) long.', 'س', Str\length('س')); * => Str('س is 1 character(s) long.') * * @param int|float|string ...$args * * @pure * * @return string a string produced according to the $format string. */ function format(string $format, ...$args): string { return vsprintf($format, $args); }
Copyright ©2021 || Defacer Indonesia