Created
April 7, 2017 07:54
-
-
Save kraizt/3a7d21960cc9f7b7f4f2ce84deafd6a5 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 = [ | |
'[email protected]' => 'Adimas Lutfi Wicaksono', | |
'[email protected]' => 'Salman Alfarisi', | |
'[email protected]' => 'Muhammad Sholeh', | |
'[email protected]' => 'Yadi Cahyadi', | |
'[email protected]' => 'Maya Maulani', | |
]; | |
foreach ($users as $key => $value) | |
{ | |
$names[] = $value; | |
} | |
print_r($emails); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment