具有多个数组的 Foreach 循环

时间:2023-04-09
本文介绍了具有多个数组的 Foreach 循环的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

这就是我想要的:

foreach($_POST['something'] as $something){
    foreach($_POST['example'] as $example){
        $query = mysql_query("INSERT INTO table (row, row2) VALUES ('{$something}','{$example}')");
    }

}

$_POST['something']$_POST['example'] 是来自输入的数组

$_POST['something'] and $_POST['example'] are arrays from an input with

name="something[]"name="example[]".

问题:

通过这种方式,我会将数据两次发送到数据库.所以我需要一个解决方案,我可以循环遍历 2 个数组,而无需两次发送数据.

In this way I will send the data twice to database. So I need a solution where I can loop trough 2 arrays without seding the data twice.

编辑

  • 两个数组将始终具有相同的大小
  • 在 mysql_query 中,我将有其他元素,而不仅仅是 row、row2,这些元素将是静态的,没有任何数组.

推荐答案

你的意思是这样的:

foreach($_POST['something'] as $key => $something) { 
    $example = $_POST['example'][$key];
    $query = mysql_query("INSERT INTO table (row, row2) VALUES ('{$something}','{$example}')"); 
} 

这篇关于具有多个数组的 Foreach 循环的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

上一篇:使用 PDO 准备好的语句使用搜索字段中的多个关键字进行 LIKE 查询 下一篇:如何在循环遍历数组时将项目添加到数组?

相关文章