“Comment créer un tableau associatif en php” Réponses codées

Comment créer un tableau associatif en php

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

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

Réponses similaires à “Comment créer un tableau associatif en php”

Questions similaires à “Comment créer un tableau associatif en php”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code