11 lines
185 B
PHP
11 lines
185 B
PHP
|
<?php
|
||
|
$os = array("Mac", "NT", "Irix", "Linux");
|
||
|
|
||
|
if (in_array("Irix", $os)) {
|
||
|
echo("Got Irix");
|
||
|
}
|
||
|
if (in_array("mac", $os)) {
|
||
|
echo("Got mac");
|
||
|
}
|
||
|
?>
|