Created
April 7, 2017 09:41
-
-
Save muhtarudinsiregar/6bb60cc13e045deded8dc2e76645eef9 to your computer and use it in GitHub Desktop.
case_Study17
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
// set new values in first index | |
$users = ['Asep Dadang Supriadi', 'Akmal Fuady', 'Yandi Fitriyanto']; | |
$users_new = 'Ricky Andika Putra'; | |
array_unshift($users, $users_new); | |
print_r($users); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment