Файловый менеджер - Редактировать - /home/kckglobal/public_html/portal/vendor/azjezz/psl/src/Psl/Str/search_ci.php
Назад
<?php declare(strict_types=1); namespace Psl\Str; use function mb_stripos; /** * Returns the first position of the 'needle' string in the 'haystack' string, * or null if it isn't found (case-insensitive). * * An optional offset determines where in the haystack the search begins. If the * offset is negative, the search will begin that many characters from the end * of the string. * * @pure * * @throws Exception\OutOfBoundsException If $offset is out-of-bounds. * * @return null|int<0, max> */ function search_ci(string $haystack, string $needle, int $offset = 0, Encoding $encoding = Encoding::UTF_8): ?int { if ('' === $needle) { return null; } $offset = Internal\validate_offset($offset, length($haystack, $encoding)); /** @var null|int<0, max> */ return false === ($pos = mb_stripos($haystack, $needle, $offset, $encoding->value)) ? null : $pos; }
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка