Skip to content

Instantly share code, notes, and snippets.

@Modicrumb
Last active September 19, 2018 20:02
Show Gist options
  • Save Modicrumb/706866aad392ffa6e6590cf0c9b09cee to your computer and use it in GitHub Desktop.
Save Modicrumb/706866aad392ffa6e6590cf0c9b09cee to your computer and use it in GitHub Desktop.
<?php
$staringArray = [
'Hercules' => [
(int) 0 => [
(int) 10 => 'Slaykings'
],
(int) 1 => [
(int) 4 => 'Welp'
]
]
];
$wantedResult = [
'Hercules' => [
(int) 10 => 'Slaykings',
(int) 4 => 'Welp'
]
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment