how to use php in_array code example
Example 1: in_array php
<?php
$os = array("Mac", "NT", "Irix", "Linux");
if (in_array("Irix", $os)) {
echo "Existe Irix";
}
if (in_array("mac", $os)) {
echo "Existe mac";
}
?>
Example 2: in_array
<?
in_array("Irix", $os);
?>