Description
int
mb_strrpos ( string haystack, string needle [, string encoding])
mb_strrpos() returns the numeric position of
the last occurrence of needle in the
haystack string_ If
needle is not found, it returns FALSE_
mb_strrpos() performs multi_byte safe
strrpos() operation based on
number of characters_ needle position is
counted from the beginning of
haystack_ First character's position is
0_ Second character position is 1_
If encoding is omitted, internal encoding
is assumed_ mb_strrpos() accepts
string for needle where
strrpos() accepts only character_
encoding is character encoding_ If it is
not specified, internal character encoding is used_
See also mb_strpos(),
mb_internal_encoding(),
strrpos()_