lithium\g11n\multibyte\adapter\Iconv::strpos()

public method

Here used as a multibyte enabled equivalent of strpos().

Parameters

  • string $haystack
  • string $needle
  • integer $offset

Returns

integer|boolean

Source

	public function strpos($haystack, $needle, $offset) {
		return iconv_strpos($haystack, $needle, $offset, 'UTF-8');
	}