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

strpos() public method

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