将表单提交为数组并删除特殊字符

时间:2014-02-22 18:58:12

标签: php arrays forms htmlspecialchars

如何在像这样的数组提交的表单上执行htmlspecialchars:

<input name="sv_votes[][author]" />
<input name="sv_votes[][author]" />
<input name="sv_votes[][author]" />

这似乎没有做任何事情:

htmlspecialchars($_POST['sv_votes'])

1 个答案:

答案 0 :(得分:0)

循环数组。

foreach($_POST['sv_votes'] as $key => $value){
    $_POST['sv_votes'][$key] = htmlspecialchars($value);
}