field('U.*')->JOIN('user', 'as U', 'logon.uid=U.id')->where('U.appid', $appid)->where('logon.token', $token)->find(); //false if (!$res_logon) out(127, $app_res); //TOKEN不存在或已失效 if ($res_logon['ban'] > time() || $res_logon['ban'] == 999999999) out(114, $res_logon['ban_notice'], $app_res); //账号被禁用 Db::table('user_logon')->where('token', $token)->update(['last_t' => time()]); //记录活动时间 $local_path = FCPATH . USER_PIC_MULU; if (!file_exists($local_path)) mkdir($local_path); if ($upt == 'bbp') { if ($_SERVER['REQUEST_METHOD'] != 'POST') out(141, $app_res); //提交方式不正确 foreach ($_FILES as $name => $file) { $fn = $file['name']; $ft = strrpos($fn, '.', 0); $fe = substr($fn, $ft); $fp = $res_logon['id'] . $fe; $result = move_uploaded_file($file['tmp_name'], $local_path . $fp); $pic = $fp; } } else if ($upt == 'e4a') { $target_path = $res_logon['id'] . ".png"; $result = move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $local_path . $target_path); $pic = $target_path; } else { out(142, $app_res); //上传类型不支持 } if ($result) { $res = Db::table('user')->where('id', $res_logon['id'])->update(['pic' => $pic]); if (defined('USER_LOG') && USER_LOG == 1) { Db::table('log')->add(['uid' => $res_logon['id'], 'type' => $act, 'status' => 200, 'time' => time(), 'ip' => getip(), 'appid' => $appid]); } //记录日志 out(200, '上传成功', $app_res); } else { if (defined('USER_LOG') && USER_LOG == 1) { Db::table('log')->add(['uid' => $res_logon['id'], 'type' => $act, 'status' => 201, 'time' => time(), 'ip' => getip(), 'appid' => $appid]); } //记录日志 out(201, '上传失败', $app_res); } ?>