I would like to have if condition which can validate PHP variable has value like string
$string = "language English"
$lan = "ENG"
//So $lan has value "ENG" which is in string
if($lan LIKE $string )
{
// DO some thing.
}
Is there way to check this? or any other ways, good examples, good practice.?
stristrorstripos.