“IN_ARRAY Associative Array PHP” Réponses codées

IN_ARRAY Associative Array PHP

$arr = array('lang1' => 'php','lang2' => 'java','lang3' => 'python');

if ( in_array( 'java', $arr ) ) {

  echo 'exists';

}else{

  echo 'not exists';

}
Black Bat

tableau associatif PHP

<?php
$arr = array('fruit' => 'mango', 'vegetable' => 'tomato', 'thing' => 'bag');
echo $arr['fruit'];
/*OUTPUT
mango*/
?>
Tense Termite

Tableau associatif PHP

Array
(
    [Ahmed] => Rofy
    [Abdallah] => Oda
    [Michel] => Mic
    [Yahia] => ENG
)
Better Bear

tableau associatif PHP

<?php
$arr = array('fruit' => 'mango', 'vegetable' => 'tomato', 'thing' => 'bag');
echo $arr[1]
//OUTPUT
//mango
?>
Tense Termite

Réponses similaires à “IN_ARRAY Associative Array PHP”

Questions similaires à “IN_ARRAY Associative Array PHP”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code