Skip to content

Instantly share code, notes, and snippets.

@mchelen
Created November 28, 2016 19:08
Show Gist options
  • Select an option

  • Save mchelen/64c01c16042a0287b78fca5994fa9cc2 to your computer and use it in GitHub Desktop.

Select an option

Save mchelen/64c01c16042a0287b78fca5994fa9cc2 to your computer and use it in GitHub Desktop.
<?php
// php array union
// http://php.net/manual/en/language.operators.array.php
$foo = [
'bar',
'baz',
'qux',
];
$fuzz = [0 => 'buzz'] + $foo;
var_dump($fuzz);
/*
array(3) {
[0]=>
string(4) "buzz"
[1]=>
string(3) "baz"
[2]=>
string(3) "qux"
}
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment