Created
April 7, 2017 08:29
-
-
Save kraizt/83ee786e75be6a3b7e93efa1f2f7d510 to your computer and use it in GitHub Desktop.
This file contains 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 | |
$users = [ | |
[ | |
'id' => 1, | |
'name' => 'Adimas Lutfi Wicaksono', | |
], | |
[ | |
'id' => 2, | |
'name' => 'Salman Alfarisi', | |
], | |
[ | |
'id' => 3, | |
'name' => 'Muhammad Sholeh', | |
], | |
]; | |
$users_new = [ | |
[ | |
'id' => 4, | |
'name' => 'Yadi Cahyadi', | |
], | |
[ | |
'id' => 5, | |
'name' => 'Maya Maulani', | |
], | |
]; | |
$user = array_merge($users, $users_new); | |
print_r($user); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment