1

我的问题很简单:如果我在 HTML 表单中有一些带有 maxlength 标签的输入字段,我也必须通过 PHP 检查输入长度吗?

4

1 回答 1

10

您应该这样做,因为任何人都可以“复制”您的表单并使用它。服务器端检查比客户端检查好。(它是安全的)

例如,您的表格:

<form method='post' action='/pay.php'>
<input type='text' maxlength='10' name='addres'>
</form>

我可以轻松地做这样的事情:(并将其上传到一些免费的服务器或类似的东西)

<form method='post' action='http://www.yourdomain.com/pay.php'>
<input type='text' name='addres'><!--no maxlength='10' for me-->
</form>

现在我有点“超越”你的限制。

但是,您可以编辑pay.php文件:

$addres = clean_input($_POST['addres']); //A custom function to make sure it's a clean string
if(strlen($addres) > 100)
{
  //Something weird
}
else
{
  //We're good
}
于 2012-10-15T13:38:01.043 回答