我需要一些帮助,我正在将google recaptcha实现到php网站,但在完成代码并上传后会显示此错误:
解析错误:语法错误,文件意外结束 第29行/home/cbj/public_html/2016/solicitudForm.php
现在,这是我的recaptcha代码
<?php
$memberType;$name;$email;$phone;$address;$captcha;
if(isset($_POST['memberType'])){
$memberType=$_POST['memberType'];
}
if(isset($_POST['name'])){
$name=$_POST['name'];
}
if(isset($_POST['email'])){
$email=$_POST['email'];
}
if(isset($_POST['phone'])){
$phone=$_POST['phone'];
}
if(isset($_POST['address'])){
$address=$_POST['address'];
}
if(isset($_POST['g-recaptcha-response'])){
$captcha=$_POST['g-recaptcha-response'];
}
if(!$captcha){
echo '<div class="alert alert-warning">
Por favor, verifica que seas humano
</div>';
exit;
}
$secretKey = "6LeEECoTAAAAAGLUBgHQ_OC-ZYJi0Sj2b_1JPRUx";
$response=file_get_contents("https://www.google.com/recaptcha/api/siteverify?secret=".$secretKey."&response=".$captcha);
$responseKeys = json_decode($response,true);
if(intval($responseKeys["success"]) !== 1) {
echo '<h2>You are spammer ! Get the @$%K out</h2>';
} else {
echo '<h2>Thanks for posting comment.</h2>';
}
?>
感谢任何帮助,谢谢。
答案 0 :(得分:-1)
由于某种原因,在本地PC上没有检测到(甚至没有保存)最后一个半冒号,直接在服务器中编写代码就可以了。