recharge activity

This commit is contained in:
yangduo 2025-01-03 10:48:56 +08:00
parent 63786c78a4
commit 74f44e72f1

View File

@ -213,4 +213,36 @@ class RechargeController
'diamond_present' => $diamond_present 'diamond_present' => $diamond_present
)); ));
} }
public function activityInfo()
{
$account_id = $_REQUEST['account_id'];
//登录校验
$login = loginVerify($account_id, $_REQUEST['session_id']);
if (!$login) {
phpcommon\sendError(ERR_USER_BASE + 1, 'session无效');
return;
}
$conn = $this->getMysql($account_id);
if (!$conn) {
phpcommon\sendError(ERR_USER_BASE + 1, '没有这个玩家');
return;
}
$rechargerow = $conn->execQueryOne(
'SELECT * FROM recharge WHERE accountid=:accountid;',
array(
':accountid' => $account_id
)
);
$firstrecharge = '';
if ($rechargerow) {
$firstrecharge = $rechargerow['first_data'];
}
echo json_encode(array(
'first_recharge' => $firstrecharge,
));
}
} }