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/lowercase.php
<?php declare(strict_types=1); namespace Psl\Str; use function mb_strtolower; /** * Returns the string with all alphabetic characters converted to lowercase. * * Example: * Str\lowercase('hello') * => Str('hello') * * Str\lowercase('Hello') * => Str('hello') * * Str\lowercase('HELLO') * => Str('hello') * * Str\lowercase('1337') * => Str('1337') * * Str\lowercase('سيف') * => Str('سيف') * * @pure */ function lowercase(string $string, Encoding $encoding = Encoding::UTF_8): string { return mb_strtolower($string, $encoding->value); }
Copyright ©2021 || Defacer Indonesia