“Como criar uma matriz associativa no PHP” Respostas de código

Como criar uma matriz associativa no PHP

<?php
	$associativeArray = [
        "carOne" => "BMW",
        "carTwo" => "VW",
        "carThree" => "Mercedes"
    ];
    
    echo $associativeArray["carTwo"] . " Is a german brand";
?>
by miss american pie

Array Associativa PHP

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

Array Associativa PHP

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

Respostas semelhantes a “Como criar uma matriz associativa no PHP”

Perguntas semelhantes a “Como criar uma matriz associativa no PHP”

Procure respostas de código populares por idioma

Procurar outros idiomas de código