我有一组输入字段:
<input type="text" name="data[question_id][]" value="6" />
<input type="text" name="data[position][]" value="50" />
<input type="text" name="data[answer][]" value="London" />
<input type="text" name="data[question_id][]" value="6" />
<input type="text" name="data[position][]" value="60" />
<input type="text" name="data[answer][]" value="New York" />
这是我的输出:
array (
'question_id' =>
array (
0 => '6',
1 => '6',
),
'position' =>
array (
0 => '50',
1 => '60',
),
'answer' =>
array (
0 => 'London',
1 => 'New York',
),
)
但是,我需要数组采用以下格式:
array (
0 =>
array (
'question_id' => '6',
'position' => '50',
'answer' => 'London',
),
1 =>
array (
'question_id' => '7',
'position' => '60',
'answer' => 'New York',
),
)
我尝试将括号放在数据 (data[][question_id]) 之后,但数组变得更加复杂。感谢您的时间!