Skip to content

Instantly share code, notes, and snippets.

@jenovateurs
Last active December 1, 2019 16:34
Show Gist options
  • Save jenovateurs/9189a1de0cd20201c726447acdafd22c to your computer and use it in GitHub Desktop.
Save jenovateurs/9189a1de0cd20201c726447acdafd22c to your computer and use it in GitHub Desktop.
Nouveauté PHP 7.4 - Fusionner/Dépiler tableau dans un autre
<?php
$aProduitsExportes = ['pomme', 'poire'];
$aFruits = ['banane', 'pasteque', ...$aProduitsExportes, 'kiwi'];
print_r($aFruits);
/* Resultat
Array
(
[0] => banane
[1] => pasteque
[2] => pomme
[3] => poire
[4] => kiwi
)
*/
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment