我有以下代码:
<tr>
<td width="60%">
<dl>
<dt>Full Name</dt>
<dd>
<input name="fullname[]" type="text" class="txt w90" id="fullname[]" value="<?php echo $value; ?>" />
</dd>
</dl>
</td>
<td width="30%">
<dl>
<dt>Job Title</dt>
<dd>
<input name="job_title[]" type="text" class="txt w90" id="job_title[]" value="<?php echo $value2; ?>" />
</dd>
</dl>
</td>
</tr>
让我们假设我有几行上面的代码。如何迭代并获取数组$_POST['fullname']
和$_POST['job_title']
?
答案 0 :(得分:10)
这只是一个阵列:
foreach ($_POST['fullname'] as $name) {
echo $name."\n";
}
如果问题是您要并行迭代这两个数组,只需使用其中一个来获取索引:
for ($i=0; $i < count($_POST['fullname']); $i++) {
echo $_POST['fullname'][$i]."\n";
echo $_POST['job_title'][$i]."\n";
}
答案 1 :(得分:3)
我之前删除了这个,因为它非常接近Vinko的答案。
for ($i = 0, $t = count($_POST['fullname']); $i < $t; $i++) {
$fullname = $_POST['fullname'][$i];
$job_title = $_POST['job_title'][$i];
echo "$fullname $job_title \n";
}
原始索引不是数字0 - N-1
$range = array_keys($_POST['fullname']);
foreach ($range as $key) {
$fullname = $_POST['fullname'][$key];
$job_title = $_POST['job_title'][$key];
echo "$fullname $job_title \n";
}
这仅用于一般信息。使用SPL DualIterator,您可以制作如下内容:
$dualIt = new DualIterator(new ArrayIterator($_POST['fullname']), new ArrayIterator($_POST['job_title']));
while($dualIt->valid()) {
list($fullname, $job_title) = $dualIt->current();
echo "$fullname $job_title \n";
$dualIt->next();
}
答案 2 :(得分:1)
我认为你要解决的问题是从$ _POST ['fullname'] []和$ _POST ['jobtitle'] []得到一对具有相同索引的值。
for ($i = 0, $rowcount = count($_POST['fullname']); $i < $rowcount; $i++)
{
$name = $_POST['fullname'][$i]; // get name
$job = $_POST['jobtitle'][$i]; // get jobtitle
}
答案 3 :(得分:1)
如果我理解正确,你有2个阵列,你基本上希望并行迭代。
以下内容可能适合您。您可以使用$a1
和$a2
来代替$_POST['fullname']
和$_POST['jobtitle']
。
<?php
$a1=array('a','b','c','d','e','f');
$a2=array('1','2','3','4','5','6');
// reset array pointers
reset($a1); reset($a2);
while (TRUE)
{
// get current item
$item1=current($a1);
$item2=current($a2);
// break if we have reached the end of both arrays
if ($item1===FALSE and $item2===FALSE) break;
print $item1.' '. $item2.PHP_EOL;
// move to the next items
next($a1); next($a2);
}
答案 4 :(得分:0)
Vinko和OIS的答案都非常出色(我提升了OIS')。但是,如果您始终打印5个文本字段副本,则始终可以专门为每个字段命名:
<?php $i=0; while($i < 5) { ?><tr>
...
<input name="fullname[<?php echo $i; ?>]" type="text" class="txt w90" id="fullname[<?php echo $i; ?>]" value="<?php echo $value; ?>" />