1, // 'orgId' => 3, // 'time' => date('Y-m-d H:i:s') // ]; // // $token = think_decrypt(think_encrypt(json_encode($data))); $token = think_decrypt(input('token','','trim')); if(!$token){ HelpHander::error('token不正确'); } $tdata = json_decode($token,true); // $tdata = json_decode(think_decrypt($token),true); if(!$tdata || !isset($tdata['userId']) || !isset($tdata['orgId'])){ HelpHander::error('token不正确'); } $this->userId = $tdata['userId']; $this->orgId = $tdata['orgId']; } }