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/capitalize_words.php
<?php declare(strict_types=1); namespace Psl\Str; use function mb_convert_case; use const MB_CASE_TITLE; /** * Returns the string with all words capitalized. * * Words are delimited by space, tab, newline, carriage return, form-feed, and * vertical tab by default, but you can specify custom delimiters. * * Example: * * Str\capitalize_words('hello, world!') * => Str('Hello, World!') * * Str\capitalize_words('Hello, world!') * => Str('Hello, World!') * * Str\capitalize_words('مرحبا بكم') * => Str('مرحبا بكم') * * @pure */ function capitalize_words(string $string, Encoding $encoding = Encoding::UTF_8): string { return mb_convert_case($string, MB_CASE_TITLE, $encoding->value); }
Copyright ©2021 || Defacer Indonesia