lithium\g11n\multibyte\adapter\Mbstring::strrpos PHP Метод

strrpos() публичный Метод

Here used as a multibyte enabled equivalent of strrpos().
public strrpos ( string $haystack, string $needle ) : integer | boolean
$haystack string
$needle string
Результат integer | boolean
    public function strrpos($haystack, $needle)
    {
        return mb_strrpos($haystack, $needle, 0, 'UTF-8');
    }