UTF::stripos PHP 메소드

stripos() 공개 메소드

Find position of first occurrence of a string (case-insensitive)
public stripos ( $stack, $needle, $ofs ) : integer | FALSE
$stack string
$needle string
$ofs int
리턴 integer | FALSE
    function stripos($stack, $needle, $ofs = 0)
    {
        return $this->strpos($stack, $needle, $ofs, TRUE);
    }