lithium\g11n\multibyte\adapter\Mbstring::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 mb_strpos($haystack, $needle, $offset, 'UTF-8');
	}