Created
April 7, 2017 09:05
-
-
Save kraizt/13cb0f73999170c53d5c6c7348ca5b1e 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'; | |
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