为了账号安全,请及时绑定邮箱和手机立即绑定

将 ID 与输入元素相关联

将 ID 与输入元素相关联

PHP
素胚勾勒不出你 2022-11-04 17:09:22
我想知道实现这一目标的最佳方式或方法是什么。我有一个表格行,有两列作为输入。我需要将一个 ID 关联到输入元素,以便在提交表单时我可以识别输入属于哪一行。这就是我所拥有的。<tr>    <td><input type="hidden" name="id[]" value="252748"> Tue - Mar 3rd 3:03 PM</td>    <td>        <select class="form-control" name="notes[]">            <option value="Parent Cancel" selected="">Parent Cancel</option>            <option value="COVID-19">COVID-19</option>        </select>    </td>    <td><input class="form-control" type="tel" name="hours[]" value="0"></td></tr><tr>    <td><input type="hidden" name="id[]" value="253081"> Wed - Mar 4th 2:03 PM</td>    <td>        <select class="form-control" name="notes[]">            <option value="Parent Cancel" selected="">Parent Cancel</option>            <option value="COVID-19">COVID-19</option>        </select>    </td>    <td><input class="form-control" type="tel" name="hours[]" value="0" readonly=""></td></tr>如果我这样做并提交表单,我将得到 3 个数组:一个用于 id、notes 和 hours。我如何将 ID 与通讯员的注释和时间相关联。还是有更好的方法来做到这一点?
查看完整描述

1 回答

?
宝慕林4294392

TA贡献2021条经验 获得超8个赞

鉴于每个“行”的索引匹配,您可以循环它们并将它们组合成一个更连贯的新数组,如下所示:


$arr = [

    'id' => [

        0 => 123,

        1 => 456,

        2 => 789,

    ],

    'notes' => [

        0 => 'Parent Cancel',

        1 => 'COVID-19',

        2 => 'Parent Cancel',

    ],

    'hours' => [

        0 => 0,

        1 => 1,

        2 => 0,

    ],

];


$newArr = [];

foreach ($arr['id'] as $index => $id) {

    $newArr[$id] = [

            'notes' => $arr['notes'][$index],

            'hours' => $arr['hours'][$index],

    ];

}


var_export($newArr);

输出:


array (

  123 =>

  array (

    'notes' => 'Parent Cancel',

    'hours' => 0,

  ),

  456 =>

  array (

    'notes' => 'COVID-19',

    'hours' => 1,

  ),

  789 =>

  array (

    'notes' => 'Parent Cancel',

    'hours' => 0,

  ),

)

但是请注意,这仅适用于所有索引始终存在(没有间隙) - 您当前的 HTML 应该是这种情况。


另一种方法是将 ID(整数)作为输入字段中的索引,但是这仍然会给您留下两个您仍然必须组合的数组(一个用于注释,一个用于小时)。因此,恕我直言,这并不会让它变得更容易。


查看完整回答
反对 回复 2022-11-04
  • 1 回答
  • 0 关注
  • 85 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信