我正在尝试使用表单更新关联数组的特定键的值。
这是我的表单的外观:
<form class="wpd_edit_note_322" method="post" action="">
<input type="hidden" id="list_note" name="list_note" value="ba222f06db">
<p><textarea id="plugn_note" name="plugin_note" placeholder="Note(Optional)" ></textarea></p>
<p><input class="list_note_id" name="plugin_note_id" type="hidden" value="322"></p>
<p><input class="list_edit_button" type="submit" value="Save"></p>
</form>
这就是我尝试在提交时更新密钥322
的值的方法:
if ( isset( $_POST['list_note'] ) && wp_verify_nonce($_POST['list_note'],'edit_item_note') )
{
$add_to_ID = $_POST['plugin_note_id'];
$note = $_POST['plugin_note'];
$existing_list = Array (
[0] => Array ( [320] => This is the plugin that I am using on my site. )
[1] => Array ( [322] => My Microblog poster bla blah bla. )
[2] => Array ( [318] => )
);
foreach ( $existing_list as $k => $v ) {
$existing_list[$k][$add_to_ID] = $note;
}
}
当我回复它时,我看到$ _POST值。所以我猜表单正在运行,但是foreach循环不能正常工作。
我也尝试使用array_walk_recursive()
而不是foreach循环,这里提到没有用:
How to change the value of an specific associative array in PHP?
有人可以帮帮我吗?
由于
答案 0 :(得分:1)
您的代码实际上将数组($ add_to_ID =&gt; $ note)添加到$ existing_list数组的每个元素,但它更改了索引为322的那个元素。尝试这样的事情:
foreach ($existing_list as $key => $value) {
if (isset($value[$add_to_ID])) {
$existing_list[$key][$add_to_ID] = $note;
break;
}
}