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/fold.php
<?php declare(strict_types=1); namespace Psl\Str; use Psl\Internal; /** * Perform case folding on a string. * * Example: * * Str\fold('ẞ') * => Str('ss') * * @pure */ function fold(string $string, Encoding $encoding = Encoding::UTF_8): string { foreach (Internal\CASE_FOLD as $k => $v) { $string = replace($string, $k, $v, $encoding); } return lowercase($string, $encoding); }
Copyright ©2021 || Defacer Indonesia