Function mb_strrpos
Find position of last occurrence of a string in a string.
Package: Cake
Copyright: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
License: MIT License
Located at Cake/bootstrap.php
Copyright: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
License: MIT License
Located at Cake/bootstrap.php
mb_strrpos( string $haystack , string $needle , integer $offset = 0 , string $encoding = null )
Parameters summary
string
$haystack
The string being checked, for the last occurrence of $needle.
string
$needle
The string to find in $haystack.
integer
$offset = 0
May be specified to begin searching an arbitrary number of characters into the string. Negative values will stop searching at an arbitrary point prior to the end of the string.
string
$encoding = null
Character encoding name to use. If it is omitted, internal character encoding is used.
Returns
-
integer|booleanThe numeric position of the last occurrence of $needle in the $haystack string. If $needle is not found, it returns false.