我有以下用于Google recaptcha的功能:
function isNotSpam(){
if(isset($_POST['g-recaptcha-response'])){
try {
$url = 'https://www.google.com/recaptcha/api/siteverify';
$data = ['secret' => $google_captcha_secert,
'response' => $_POST['g-recaptcha-response'],
'remoteip' => $_SERVER['REMOTE_ADDR']];
$options = [
'http' => [
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => http_build_query($data)
]
];
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
return json_decode($result)->success;
}catch (Exception $e) {return null;}
}else{return null;}
}
然后我用这种方式检查错误:
$google_captcha_secert = "/my secret key here/";
if(!isNotSpam()){display error here}
我的HTML包含以下reCAPTCHA代码
<script src="https://www.google.com/recaptcha/api.js?hl=en"></script>
</head>
<body>
...
<form>
...
<div class="g-recaptcha" data-sitekey="/ my public key here /"></div>
...
</form>
</body>
我做错了什么?我尝试使用没有!函数的函数来检查错误,并以这种方式使用它:
if(isNotSpam()){}else{display error here}
我试着用
做if(isNotSpam() == null){display error here}
没有什么工作,它总是告诉我,我是一个机器人,但这显然是不正确的。你能告诉我错误在哪里吗?
答案 0 :(得分:1)
$google_captcha_secert
未在您的函数中定义,因为您既未使用global
keyword从全局范围导入它,也未将其作为函数的参数提供。
可能还有其他错误,请考虑记录错误响应/异常,而不是默默地吞下它们,以便能够自己调试此类问题。我还建议在调试时启用error_reporting。 PHP应该在那里打印通知。