php TX Captcha代码

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php TX Captcha代码相关的知识,希望对你有一定的参考价值。

<!--  Start grecaptcha button -->
<div id="grecaptcha_<?php echo uniqid() ?>" class="g-recaptcha" data-recaptcha-message="กรุณาทำเครื่องหมายว่าฉันไม่ใช่โปรแกรมอัตโนมัติค่ะ"></div>

<!-- Start grecaptcha script -->
<script type="text/javascript">
  function txOnloadReCaptchaBookingCallback(){
    if( $(".g-recaptcha").length > 0 ){
      $(".g-recaptcha").each(function() {
        var $recaptchaElement = $(this);
        var recaptchaElementId = $recaptchaElement.attr('id');
        var $form = $recaptchaElement.closest('form');
        if( typeof grecaptcha !== undefined ){  
          grecaptcha.render( recaptchaElementId , {
            sitekey : '<?php echo TX_Captcha::get_site_key() ?>'
          });
        }
      });
    }
  }
</script>
<script src='https://www.google.com/recaptcha/api.js?onload=txOnloadReCaptchaBookingCallback&render=explicit' async defer></script>

以上是关于php TX Captcha代码的主要内容,如果未能解决你的问题,请参考以下文章

Captcha.class.php

PHP 简单的PHP CAPTCHA

PHP Captcha与颜色保护

PHP Captcha与算术的问题

PHP 简单的图像CAPTCHA

php 在CodeIgniter网站中添加表单中的Captcha:https://www.cloudways.com/blog/captcha-in-codeigniter/