lithium\g11n\multibyte\adapter\Iconv::strrpos PHP Method

strrpos() public method

Here used as a multibyte enabled equivalent of strrpos().
public strrpos ( string $haystack, string $needle ) : integer | boolean
$haystack string
$needle string
return integer | boolean
    public function strrpos($haystack, $needle)
    {
        return iconv_strrpos($haystack, $needle, 'UTF-8');
    }