我正在使用一个旧的 random() 函数为我在网上找到的 AJAX 评论系统创建验证代码(源代码位于LINK)。
背后的想法很简单:
function Random()
{
$chars = "ABCDEFGHJKLMNPQRSTUVWZYZ23456789";
srand((double)microtime()*1000000);
$i = 0;
$pass = '' ;
while ($i <= 4)
{
$num = rand() % 32;
$tmp = substr($chars, $num, 1);
$pass = $pass . $tmp;
$i++;
}
return $pass;
}
$random_code = Random();
然后在表单中,就在提交按钮之前:
<label for="security_code">Enter this captcha code: <b><? echo $random_code; ?></b></label>
<input type="text" name="security_code" id="security_code" />
<input name="randomness" type="hidden" id="randomness" value="<?php $random_code; ?>">
我的 AJAX 评论系统使用类似这样的东西来检查字段是否为空白(即,如果有任何错误):
$errors = array();
$data= array();
[...]
if(!($data['name'] = filter_input(INPUT_POST,'name',FILTER_CALLBACK,array('options'=>'Comment::validate_text'))))
{
$errors['name'] = 'Please enter a name.';
}
if(!empty($errors)){
[...]
}
所以我写了这个:
if(!($data['security_code'] = filter_input(INPUT_POST,'security_code',FILTER_CALLBACK,array('options'=>'Comment::validate_text'))))
{
$errors['security_code'] = 'You did not enter the validation code.';
}
elseif(!($data['security_code'] = $randomness))
{
$errors['security_code'] = 'You entered the validation code incorrectly. Please note that it is case sensitive.';
}
但是,当我在验证码文本字段中插入随机文本(在LINK自行测试)后单击提交按钮时,我总是得到“您输入的验证码不正确”。信息。
print_r($_POST) 给出一个空数组,然后在我单击提交后脚本挂起: Array ( )
我错过了什么?原始验证码在验证过程中的某个时间点(第 3 和第 4 块代码)丢失。提前致谢