PHP - Funzione array_key_exists ()
Sintassi
bool array_key_exists ( $key, $array );
Definizione e utilizzo
Restituisce TRUE se il dato key è impostato in array.
Parametri
Suor n | Parametro e descrizione |
---|---|
1 | key(Required) La chiave da cercare. |
2 | array(Required) Questo è un array da cercare |
Valori restituiti
Restituisce TRUE se la chiave specificata è impostata nell'array, altrimenti FALSE.
Esempio
Prova il seguente esempio:
<?php
$input = array('first' => 10, 'second' => 400);
if (array_key_exists('first', $input)) {
echo "The 'first' element is in the array";
}
?>
Questo produrrà il seguente risultato:
The 'first' element is in the array