Created
April 7, 2017 06:33
-
-
Save kraizt/0b46079da2531fad996646decff41fc6 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 = ['Asep Dadang Supriadi', 'Akmal Fuady', 'Yandi Fitriyanto']; | |
$users_new = ['Ricky Andika Putra', 'Ramadani']; | |
$result = array_merge($users, $users_new); | |
print_r($result); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment