“Comment ajouter un tableau dans un tableau associatif en php” Réponses codées

PHP Ajouter au tableau associatif

// for php 5.4+
$data += [$key => $value];

// for php 5.4-
$data += array($key => $value);
Wrong Warbler

PHP Ajouter au tableau associatif existant


$a1=['aa'=>'123' , 'bb'=>'454'];

$a1 = array_merge( $a1 , ['a'=>1,'b'=>2] ) ;
faisalqureshi

PHP Ajouter un nouvel article à un tableau associatif

$a = array('foo' => 'bar'); // when you create
$a['Title'] = 'blah'; // later
Sleepy Scarab

Comment ajouter un tableau dans un tableau associatif en php

$data[$category][] = $item;
Kriss Sachintha

Réponses similaires à “Comment ajouter un tableau dans un tableau associatif en php”

Questions similaires à “Comment ajouter un tableau dans un tableau associatif en php”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code