“in_array asocjacyjna tablica PHP” Kod odpowiedzi

in_array asocjacyjna tablica PHP

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

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

  echo 'exists';

}else{

  echo 'not exists';

}
Black Bat

tablica asocjacyjna PHP

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

Tablica asocjacyjna PHP

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

tablica asocjacyjna PHP

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

Odpowiedzi podobne do “in_array asocjacyjna tablica PHP”

Pytania podobne do “in_array asocjacyjna tablica PHP”

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu