Is there another way to develop this comparison?
$numero = 1234;
$a = 1111;
$b = 2222;
$c = 3333;
$d = 4444;
if ($numero == $a or $numero == $b or $numero == $c or $numero == $d) {
echo "O número existe";
} else {
echo "Não existe o número";
}
I wanted to know if there is another way to manipulate this comparison
($numero == $a or $numero == $b or $numero == $c or $numero == $d)