Skip to content

Instantly share code, notes, and snippets.

@d0t15t
Created July 21, 2021 07:43
Show Gist options
  • Save d0t15t/443f36ed30a38b56a66cfcd8f9af6c47 to your computer and use it in GitHub Desktop.
Save d0t15t/443f36ed30a38b56a66cfcd8f9af6c47 to your computer and use it in GitHub Desktop.
<?php
// array_map with $key => $value
return array_map(function($key, $value) {
return [$key => $value];
}, array_keys($my_array), $my_array);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment