Universeorange.com/Docs/

R3m/framework Function reference string.position.last.occurrence

{string.position.last.occurrence(String $haystack, String $needle, Int $offset=0)}

Find the position of the first occurrence of a substring in a string.

Find the numeric position of the first occurrence of needle in the haystack string.

offset

If specified, search will start this number of characters counted from the beginning of the string.  
If the offset is negative, the search will start this number of characters counted from the end of the string.

Returns the position as an integer of where the needle exists relative to the beginning of the haystack string (independent of offset). Also note that string positions start at 0, and not 1. Returns false if the needle was not found.

More information:

https://www.php.net/manual/en/function.strpos.php

Last modified: 2021-06-07

© 2021 universeorange.com