Verify.php 223 B

123456789101112131415
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: 97
  5. */
  6. namespace app\tytw\controller;
  7. use think\captcha\facade\Captcha;
  8. class Verify{
  9. public function index(){
  10. return Captcha::create('adminverify');
  11. }
  12. }