### Description The following code: ```php <?php var_dump(grapheme_extract('', 42)); var_dump(grapheme_extract('ab', 42, offset: 2)); ``` Resulted in this output: ``` bool(false) bool(false) ``` But I expected this output instead: ``` string(0) "" string(0) "" ``` Per [documentation](https://www.php.net/manual/en/function.grapheme-extract.php), the offset ought to be less then _or equal_ to the length of the string (which I consider an appropriate range). ### PHP Version PHP 8.3 ### Operating System _No response_