我是一个PHP菜鸟,我正在尝试将新的google recaptcha纳入网站。 html文档中有一个表单,它调用了一个" sendemail.php"文件(下面的代码)。问题是表单是否正常工作,无论用户是否正确地完成了重新填写。在我的代码中,无论用户是什么,它都将始终执行" codeB"未能完成重新接收。
我搞砸了什么?
<?php
$captcha=$_POST['g-recaptcha-response'];
$response=file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=##########11&response=".$captcha."&remoteip=".$_SERVER['REMOTE_ADDR']);
if($response.success==false)
{
//codeA that I want to execute if the recaptcha fails
echo '<p>Please Go Back And Try Again</p>';
}
else
{
//codeB that I want to execute upon success of the recaptcha
}
?>
答案 0 :(得分:0)
这是一个教程: -
$email;$comment;$captcha;
if(isset($_POST['email'])){
$email=$_POST['email'];
}if(isset($_POST['comment'])){
$email=$_POST['comment'];
}if(isset($_POST['g-recaptcha-response'])){
$captcha=$_POST['g-recaptcha-response'];
}
if(!$captcha){
echo '<h2>Please check the the captcha form.</h2>';
exit;
}
$response=file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=YOUR SECRET KEY&response=".$captcha."&remoteip=".$_SERVER['REMOTE_ADDR']);
if($response.success==false)
{
echo '<h2>You are spammer ! Get the @$%K out</h2>';
}else
{
echo '<h2>Thanks for posting comment.</h2>';
}
希望这会有所帮助..
答案 1 :(得分:0)
您需要使用函数json_encode:
$response=file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=YOUR SECRET KEY&response=".$captcha."&remoteip=".$_SERVER['REMOTE_ADDR']);
$response = json_encode($response);
if($response->success==false){
echo 'spamer';
}
else{
echo 'ok';
}
答案 2 :(得分:0)
你的代码有2个错误,第一个是上面提到的你需要使用json_decode的错误。其次,你不能通过在$ response的前面添加.success来检查价值。
以下是正确的代码:
$captchaSecretCode = 'placeYourSecretCodeHere';
$response = json_decode(file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=".$captchaSecretCode."&response=".$_POST['g-recaptcha-response']."&remoteip=".$_SERVER['REMOTE_ADDR']), true);
if($response['success'] == true)
{
echo 'true';
}else{
echo 'false';
}
答案 3 :(得分:0)
可能检查的一件事是你的php.ini中是否打开了fopen值。我一直有各种各样的问题,将recaptcha纳入这个特定的网站。它在其他人身上运作良好,我无法弄清楚原因。然后我看到了提及&#39; fopen&#39;在这个网站上的另一篇文章中,低调看,设置已关闭。
寻找:
allow_url_fopen
allow_url_include
我将它们从Off更改为On然后代码工作了!
答案 4 :(得分:0)
在Plesk上的PHP .INI文件中,有两行代码可启用这些设置
;;;;;;;;;;;;;;;;;;
; Fopen wrappers ;
;;;;;;;;;;;;;;;;;;
; Whether to allow the treatment of URLs (like http:// or ftp://) as files.
; http://php.net/allow-url-fopen
allow_url_fopen = On
; Whether to allow include/require to open URLs (like http:// or ftp://) as files.
; http://php.net/allow-url-include
allow_url_include = On