header('token'); $vars = Cache::get($token); if (empty($token) || !$token || !$vars) { throw new Exception('Token已过期或无效Token'); } else { // 如果不是数组则转成数组 if (!is_array($vars)) { $vars = json_decode($vars, true); } // 判断Key是否存在数组中 if (array_key_exists($key, $vars)) { // 重置缓存时间 Cache::set($token, json_encode($vars, JSON_UNESCAPED_UNICODE), 7200); // 返回缓存中的数据 return $isWhole ? $vars : $vars[$key]; } else { throw new Exception('尝试获取的Token变量并不存在'); } } } }