I have a string passed in and I want to check validate it to make sure that multiple values don't exist at the start, the below would only check the entire string for the value??
Code:
if(strstr($string,array("value1","value2","value3")) {
...
}
Comment