From 17a528e653c89ff43911712688341cdca615e3dd Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Thu, 16 Jun 2022 14:10:43 +0800 Subject: [PATCH] 1 --- webapp/controller/TempToolsController.class.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/webapp/controller/TempToolsController.class.php b/webapp/controller/TempToolsController.class.php index 0a286b9d..9a64f14b 100644 --- a/webapp/controller/TempToolsController.class.php +++ b/webapp/controller/TempToolsController.class.php @@ -194,11 +194,12 @@ class TempToolsController extends BaseController { array( ) ); - echo 'account_id' . "\n"; + echo 'account_id,first_battle_utc_time' . "\n"; foreach ($rows as $row) { $channel = phpcommon\extractChannel($row['account_id']); if ($channel == 6516) { - echo $row['account_id'] . "\n"; + echo phpcommon\extractOpenId($row['account_id']) + . ',' . phpcommon\timestamp_to_datetime($row['createtime']) . "\n"; } } }