whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Str
/
Byte
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Str/Byte/words.php
<?php declare(strict_types=1); namespace Psl\Str\Byte; use function str_word_count; /** * Return information about words used in a string. * * @param string|null $characters_list A list of additional characters which will be considered as 'word' * * @return array<int, string> a dict, where the key is the numeric position of * the word inside the string and the value is the actual word itself * * @pure */ function words(string $string, ?string $characters_list = null): array { if (null === $characters_list) { $words = str_word_count($string, 2); } else { $words = str_word_count($string, 2, $characters_list); } return $words; }
Copyright ©2021 || Defacer Indonesia