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"; } } }