Last active
February 7, 2018 07:09
-
-
Save mag5323/0ca39d7842658d4f331481c7725be3fc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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