$re = '/[eps]/m';
$str = 'help me please';
preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0);
// Print the entire match result
var_dump($matches);
Как узнать есть ли в переменной один из перечисленных символов?
$a = ''Hello moto;
И нужно узнать есть ли в этой переменной символы h и t.