The goal
Make this:
Array
(
[Title] => 'Hello!'
[Layout] => 'Shared/_Master'
[Section] => Array (
[0] => Header
[1] => Body
)
)
The problem
I'm missing the logic.
The scenario
My arrays are:
$keys = ['Title', 'Layout', 'Section', 'Section'];
$values = ['Hello!', 'Shared/_Master', 'Header', 'Body'];
Thanks in advance.