SyntaxFix
Write A Post
Hire A Developer
Questions
Here is a little utility function that is useful in situations like this
// returns true if $needle is a substring of $haystack function contains($needle, $haystack) { return strpos($haystack, $needle) !== false; }