“Array PHP existe chave” Respostas de código

A chave PHP na matriz existe


<?php
$search_array = array('first' => null, 'second' => 4);

// returns false
isset($search_array['first']);

// returns true
array_key_exists('first', $search_array);
?>

Misty Manatee

Array PHP existe chave

<?php
$search_array = array('first' => 1, 'second' => 4);
if (array_key_exists('first', $search_array)) {
    echo "The 'first' element is in the array";
}
?>
Shadow

Array_key_exists

array_key_exists($key_to_search, $array)
RIFT | Web Development

Respostas semelhantes a “Array PHP existe chave”

Perguntas semelhantes a “Array PHP existe chave”

Mais respostas relacionadas para “Array PHP existe chave” em PHP

Procure respostas de código populares por idioma

Procurar outros idiomas de código