“tableau associatif PHP” Réponses codées

PHP Transforment Associative Array en tableau

$array = array_values($array);
Esternome

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

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 à “tableau associatif PHP”

Questions similaires à “tableau associatif PHP”

Plus de réponses similaires à “tableau associatif PHP” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code