Created
April 7, 2017 07:52
-
-
Save kraizt/fd19b7108e2908134eba7071e11a3ecc 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) | |
{ | |
$emails[] = $key; | |
} | |
print_r($emails); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment