問題:您已經實現了Google reCAPTCHA v3,並在前端,但您在伺服器端驗證它時遇到困難。即使驗證碼無效,表單也會提交。
解決方案:
要在伺服器端有效處理 Google reCAPTCHA v3 驗證,使用 POST 請求至關重要。這是一個解決方案:
<code class="php">function isValid() { try { $url = 'https://www.google.com/recaptcha/api/siteverify'; $data = [ 'secret' => '[YOUR SECRET KEY]', '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; } }</code>
說明:
用法:
在您的程式碼中,只需寫:
if (isValid()) { // The user has passed the captcha validation. } else { // The user has failed the captcha validation. }
注意:
注意:注意:注意:確保將[YOUR SECRET KEY] 替換為提供的程式碼片段中的實際reCAPTCHA 金鑰。以上是如何在 PHP 的伺服器端驗證 Google reCAPTCHA v3?的詳細內容。更多資訊請關注PHP中文網其他相關文章!