Skip to content

Instantly share code, notes, and snippets.

@00pp
Created December 2, 2018 14:05
Show Gist options
  • Save 00pp/346f57c04695f85afb3955ba658cec5d to your computer and use it in GitHub Desktop.
Save 00pp/346f57c04695f85afb3955ba658cec5d to your computer and use it in GitHub Desktop.
2dim array flattering
array [
'one' => [
'sub_one' => 'final_value',
'sub_one2' => 'final_value2',
'sub_one3' => 'final_value3'
]
]
...
array [
'one:sub_one' => 'final_value',
'one:sub_one2' => 'final_value2',
'one:sub_one3' => 'final_value3'
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment