in src/str/grapheme/introspect.php [66:75]
function search_ci(string $haystack, string $needle, int $offset = 0)[rx_local]: ?int {
$offset = _Private\validate_offset($offset, length($haystack));
/* HH_FIXME[2049] __PHPStdLib */
/* HH_FIXME[4107] __PHPStdLib */
$position = \grapheme_stripos($haystack, $needle, $offset);
if ($position === false) {
return null;
}
return $position;
}