public function captcha()
 {
     ob_get_clean();
     $v = new \Think\PhpCaptcha(null, 120, 50);
     $v->UseColour(true);
     $v->SetNumChars(4);
     $v->Create();
 }