Function mb_strripos
Finds position of last occurrence of a string within another, case insensitive
		
		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_strripos( string $haystack , string $needle , integer $offset = 0 , string $encoding = null )
Parameters summary
| string | $haystack | The string from which to get the position of the last occurrence of $needle. | 
| string | $needle | The string to find in $haystack. | 
| integer | $offset = 0 | The position in $haystack to start searching. | 
| 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, or false if $needle is not found. 
