function.php 180 B

1234567891011121314
  1. <?php
  2. /**
  3. * 验证码检查
  4. */
  5. function check_verify($code, $id = ""){
  6. $verify = new \Think\Verify();
  7. return $verify->check($code, '');
  8. }
  9. ?>