This commit is contained in:
2025-12-02 12:14:57 +08:00
parent c6fc8163a9
commit 258ba5e5c2
3 changed files with 18 additions and 6 deletions

View File

@@ -21,18 +21,23 @@ class PerformPerSecond
echo "拍卖房结束提醒:\n";
$this->auction_end_notice();//拍卖房结束提醒
echo "\n";
echo "Pk房连线中倒计时结束操作PK结束\n";
$this->pk_start_end();
echo "\n";
echo "Pk房PK进行中倒计时结束操作PK结束\n";
$this->pk_end();
echo "\n";
echo "Pk房PK结束惩罚倒计时结束断开操作\n";
$this->pk_close();
echo "\n";
echo "pk发起10秒后无应答拒绝\n";
$this->pk_start_refuse();
echo "\n";
echo "房间红包清退:\n";
$this->processExpiredRedpackets();
echo "\n";
@@ -40,9 +45,11 @@ class PerformPerSecond
echo "提现云账号订单状态查询:\n";
$this->withdraw_order_status();
echo "\n";
echo "签约房时间结束处理:\n";
$this->sign_room_time_end();
echo "\n";
echo "系统降身价:\n";
$this->system_downgrade();
echo "\n";

View File

@@ -15,13 +15,16 @@ class TenSeconds
*/
function index()
{
echo "房间在线人数:\n";
$this->auction_end_notice();//拍卖房结束提醒
echo "\n";
//下面两个经业务调整 暂时不要了
// echo "房间在线人数:\n";
// $this->auction_end_notice();//拍卖房结束提醒
// echo "\n";
//清理切后台超过5分钟的用户
echo "清理切后台超过5分钟的用户\n";
$this->clear_offline_user();
echo "\n";
// echo "清理切后台超过5分钟的用户\n";
// $this->clear_offline_user();
// echo "\n";
}