Answers for "php in to array"

PHP
6

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";
}
?>
Posted by: Guest on May-09-2020

Browse Popular Code Answers by Language