Skip to content

Instantly share code, notes, and snippets.

@muhtarudinsiregar
Created April 7, 2017 07:51
Show Gist options
  • Select an option

  • Save muhtarudinsiregar/c11820c830e7da3179ca0668149d7504 to your computer and use it in GitHub Desktop.

Select an option

Save muhtarudinsiregar/c11820c830e7da3179ca0668149d7504 to your computer and use it in GitHub Desktop.
Case Study 08
<!-- 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