diff --git a/ThinkPHP/Library/Think/Verify.class.php b/ThinkPHP/Library/Think/Verify.class.php index 6e5e38ae8..0616d1926 100644 --- a/ThinkPHP/Library/Think/Verify.class.php +++ b/ThinkPHP/Library/Think/Verify.class.php @@ -84,8 +84,10 @@ class Verify { */ public function check($code, $id = '') { $key = $this->authcode($this->seKey).$id; + var_dump($key); // 验证码不能为空 $secode = session($key); + var_dump($secode); if(empty($code) || empty($secode)) { return false; }