Last active
April 7, 2017 06:33
-
-
Save muhtarudinsiregar/8d4c8145c61f0183b1a1e6ce40696040 to your computer and use it in GitHub Desktop.
Workshop Array
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 | |
| $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