Skip to content

Instantly share code, notes, and snippets.

@iNem0o
Created November 1, 2012 09:15
Show Gist options
  • Save iNem0o/3992650 to your computer and use it in GitHub Desktop.
Save iNem0o/3992650 to your computer and use it in GitHub Desktop.
Étendre un tableau associatif sans réécrire les valeurs déja présentes avec PHP
<?php
$tab = array(
'cle1' => 1,
'cle2'=> 2,
'cle3'=> 3
);
$tab += array(
'cle2'=> 7, // ne sera pas utilisé car déja présent
'cle4' => 4 // sera ajouté car n'existe pas
);
var_dump($tab);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment