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

@@ -18,6 +18,8 @@ class Cron
$cron->index(); $cron->index();
} }
//经业务调整 暂时不要了
//每10秒执行 //每10秒执行
public function TenSeconds() public function TenSeconds()
{ {

View File

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

View File

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