stripos( $haystack,  $needle )

In this article

Source

function stripos($haystack, $needle){
    return strpos($haystack, stristr( $haystack, $needle ));
}

User Contributed Notes

You must log in before being able to contribute a note or feedback.