Created
April 7, 2017 07:51
-
-
Save muhtarudinsiregar/c11820c830e7da3179ca0668149d7504 to your computer and use it in GitHub Desktop.
Case Study 08
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
| <!-- return array keys dari suatu array --> | |
| $users = [ | |
| '[email protected]' => 'Adimas Lutfi Wicaksono', | |
| '[email protected]' => 'Salman Alfarisi', | |
| '[email protected]' => 'Muhammad Sholeh', | |
| '[email protected]' => 'Yadi Cahyadi', | |
| '[email protected]' => 'Maya Maulani', | |
| ]; | |
| $email = array_keys($users); | |
| print_r($email); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment