Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Sivamanim/3a8133b46c6b1a33f8da28dab354fde8 to your computer and use it in GitHub Desktop.
Save Sivamanim/3a8133b46c6b1a33f8da28dab354fde8 to your computer and use it in GitHub Desktop.
$array = Array
(
[0] => Array
(
[plan] => basic
)
[1] => Array
(
[plan] => small
)
[2] => Array
(
[plan] => novice
)
[3] => Array
(
[plan] => professional
)
[4] => Array
(
[plan] => master
)
[5] => Array
(
[plan] => promo
)
[6] => Array
(
[plan] => newplan
)
);
$array = array_map('current', $array);
Array (
[0] => basic
[1] => small
[2] => novice
[3] => professional
[4] => master
[5] => promo
[6] => newplan
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment