Файловый менеджер - Редактировать - /home/kckglobal/public_html/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; }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка