Skip to content

Instantly share code, notes, and snippets.

@tadeubdev
Last active August 6, 2021 17:10
Show Gist options
  • Select an option

  • Save tadeubdev/1ac2489adc584c2179c231e31fa2a8a1 to your computer and use it in GitHub Desktop.

Select an option

Save tadeubdev/1ac2489adc584c2179c231e31fa2a8a1 to your computer and use it in GitHub Desktop.
<?php
$arrayOne = ['a' => 'Hello', 'b' => 'World', 'c' => 'Lorem'];
$arrayTwo = ['c' => 'Ipsum', 'd' => 'Dolor'];
print_r($arrayOne + $arrayTwo);
// prints:
// [
// 'a' => 'Hello',
// 'b' => 'World',
// 'c' => 'Lorem',
// 'd' => 'Dolor'
// ]
print_r($arrayTwo + $arrayOne);
// prints:
// [
// 'c' => 'Ipsum',
// 'd' => 'Dolor',
// 'a' => 'Hello',
// 'b' => 'World'
// ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment