Skip to content

Instantly share code, notes, and snippets.

@MehmetGoekce
Last active February 9, 2020 13:01
Show Gist options
  • Select an option

  • Save MehmetGoekce/b3edf70b1f070d05b47cb9a5d548d49a to your computer and use it in GitHub Desktop.

Select an option

Save MehmetGoekce/b3edf70b1f070d05b47cb9a5d548d49a to your computer and use it in GitHub Desktop.
<?php
$arr1 = [1, 2, 3];
$arr2 = [4, 5, 6];
$arr3 = [...$arr1, ...$arr2];
$arr4 = [...$arr1, ...$arr3, 7, 8, 9];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment