是的,当用户提交表单来更新他们的联系信息时...奇怪的事情对我来说没什么意义,并使我无法正确解析结果数据。
发送到我的脚本的$_POST
数据(通过print_r
找到)如下:
Array
(
[name_first] => Charles
[name_last] => Broughton
[company] =>
[address1] =>
[address2] =>
[city] => Bristol
[region] => England
[postal] =>
[country] => 1
[email] => *******************
[phones_types] => Array
(
[0] => Cell
)
[phones_numbers] => Array
(
[0] => ************
)
[phone_types] => Array
(
[1] => Home
)
[phone_numbers] => Array
(
[1] => ************
)
[pass] => **********
[id] =>
)
创建此奇数输出的表单如下:
<form action="URL" method="POST">
<table class="data" align="center" border="0" cellpadding="10" cellspacing="0" width="100%"><tbody>
<tr>
<th colspan="3">Edit Contact</th>
</tr>
<tr>
<td>First Name:</td>
<td><input type="text" name="name_first" value="Charles"/> (required)</td>
</tr>
<tr>
<td>Last Name:</td>
<td><input type="text" name="name_last" value="Broughton"/></td>
</tr>
<tr>
<td>Company:</td>
<td><input type="text" name="company" value=""/></td>
</tr>
<tr>
<td>Address Line 1:</td>
<td><input type="text" name="address1" value=""/></td>
</tr>
<tr>
<td>Address Line 2:</td>
<td><input type="text" name="address2" value=""/></td>
</tr>
<tr>
<td>City:</td>
<td><input type="text" name="city" value="Bristol"/> (required)</td>
</tr>
<tr>
<td>Region:</td>
<td><input type="text" name="region" value="England"/> (required)</td>
</tr>
<tr>
<td>Postal:</td>
<td><input type="text" name="postal" value=""/></td>
</tr>
<tr>
<td>Country:</td>
<td><select name="country">
<option value="1" selected="selected">United Kingdom</option>
<option value="2">United States</option>
</select> (required)</td>
</tr>
<tr>
<td>Email:</td>
<td><input type="text" name="email" value="*******************"/> (required)</td>
</tr>
<tr>
<td>Phones(s):</td>
<td><input type="text" name="phones_types[0]" value="Cell"/>: <input type="text" name="phones_numbers[0]" value="************"/><br/><input type="text" name="phone_types[1]"/>: <input type="text" name="phone_numbers[1]"/></td>
</tr>
<tr>
<td>Current Password:</td>
<td><input type="password" name="pass"/> (required)</td>
</tr>
<tr align="center">
<td colspan="2"><input type="submit" value="Save Changed"/></td>
</tr>
<input type="hidden" name="id" value=""/>
</tbody></table>
</form>
有人知道如何解决这个问题,或者使用PHP正确解析它?我尝试使用for
循环将两个数组解析为一个,但由于分离,它们都不是数组...其示例在上面的print_r
输出中。
-
编辑我试图使用以下PHP来解析表单数据,并输出正在进行的错误消息。
if (count($_POST['phone_types'])!=0 && count($_POST['phone_numbers'])!=0)
{
for ($i = 0; $i < count($_POST['phone_types']); $i++)
{
if (!empty($_POST['phone_types'][$i]) && !empty($_POST['phone_numbers'][$i]))
$phones[$_POST['phone_types'][$i]] = $_POST['phone_numbers'][$i];
}
$ph = "";
foreach ($phones as $k => $v)
{
$ph.= "$k:$v;";
}
$phones = $ph;
}
else
$phones = "";
错误:
Warning: Invalid argument supplied for `foreach()` in `FILE` on line 35
答案 0 :(得分:2)
您在输入字段中使用数组表示法:phones_types[0]
向PHP表明它应该创建一个phones_types
数组,并且此特别字段应该是元素0。
任何名称末尾带有[]
的表单字段都被PHP视为指令,将其视为一个数组,因此您可以将多个值提交给同一个“名称”。
答案 1 :(得分:1)
其中包含括号的字段名称将由PHP自动转换为数组。如果您遇到丢失数组条目的问题,请尝试在字段名称中将[0]
更改为[]
。
请参阅http://www.php.net/manual/en/faq.html.php#faq.html.arrays。
答案 2 :(得分:1)
<input type="text" name="phones_types[0]" value="Cell"/>:
<input type="text" name="phones_numbers[0]" value="************"/><br/>
<input type="text" name="phone_types[1]"/>:
<input type="text" name="phone_numbers[1]"/>
应该是:
<input type="text" name="phones_types[0]" value="Cell"/>:
<input type="text" name="phones_numbers[0]" value="************"/><br/>
<input type="text" name="phones_types[1]"/>:
<input type="text" name="phones_numbers[1]"/>
为了能够循环使用phones_types&amp;使用foreach的phones_number
答案 3 :(得分:0)
您的一个帖子适用于phones_numbers
,另一个帖子适用于phone_numbers
那些不匹配,因此它们将是单独的_POST
值