Skip to content

Instantly share code, notes, and snippets.

@mag5323
Last active February 7, 2018 07:09
Show Gist options
  • Save mag5323/0ca39d7842658d4f331481c7725be3fc to your computer and use it in GitHub Desktop.
Save mag5323/0ca39d7842658d4f331481c7725be3fc to your computer and use it in GitHub Desktop.
<?php
$keyByPureString = [
'foo' => 'bar',
'foo2' => 'bar2',
];
$keyByIntAsString = [
'100' => 'hundred',
'1000' => 'thousand',
];
print_r(array_merge($keyByPureString, $keyByIntAsString));
print_r($keyByPureString + $keyByIntAsString);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment