在验证用户和密码之前,我想在处理程序中检查 Captcha Google reCaptcha 。
require_once('recaptchalib.php');
$privatekey = "your_private_key";
$resp = recaptcha_check_answer ($privatekey,
$_SERVER["REMOTE_ADDR"],
$_POST["recaptcha_challenge_field"],
$_POST["recaptcha_response_field"]);
if (!$resp->is_valid) {
// What happens when the CAPTCHA was entered incorrectly
die ("The reCAPTCHA wasn't entered correctly. Go back and try it again." .
"(reCAPTCHA said: " . $resp->error . ")");
} else {
// Your code here to handle a successful verification
}
我正在使用 FOSUserBundle,我想在使用处理程序进行验证或扩展某些控制器之前检查验证码是否正确。
我的问题是,我可以使用什么处理程序来执行此操作?和以前一样登录?