如何在php中输入多维数组

时间:2017-05-15 09:16:08

标签: php jquery html arrays ajax

我有一个带有输入框的query.use数组。

<input type="text" name="['pnr'][a_o1]" />

如何在PHP中的输入中使用多维数组。我想在PHP中使用输入名称中的数组。

提前谢谢。

1 个答案:

答案 0 :(得分:1)

<input type="text" name="input[pnr][pnr1]" />
<input type="text" name="input[pnr][pnr2]" />
<input type="text" name="input[pnr][pnr3]" />

在你的php脚本中,执行以下操作:

print_r($_POST['input'][0]);#returns all input associated with that array

这种方法更简洁,因为它减少了传递给控制器​​功能的参数数量。