<?php $os = array("Mac", "NT", "Irix", "Linux"); if (in_array("Irix", $os)) { echo "Existe Irix"; } if (in_array("mac", $os)) { echo "Existe mac"; } ?>