Skip to content

Instantly share code, notes, and snippets.

@MehmetGoekce
Created February 9, 2020 13:47
Show Gist options
  • Select an option

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

Select an option

Save MehmetGoekce/5280ae78c45e20efa08a1976c234e8ed to your computer and use it in GitHub Desktop.
unpack arrays returned by a function
<?php
function buildArray(){
return ['red', 'green', 'blue'];
}
$arr1 = [...buildArray(), 'black', 'violet', 'yellow'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment