From 4cb3c4a29cb26e9c53222b21c21a96fab03f9014 Mon Sep 17 00:00:00 2001 From: aozhiwei Date: Fri, 24 Jun 2022 18:56:43 +0800 Subject: [PATCH] 1 --- webapp/controller/TempToolsController.class.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/webapp/controller/TempToolsController.class.php b/webapp/controller/TempToolsController.class.php index cb78a2ac..68c85ca6 100644 --- a/webapp/controller/TempToolsController.class.php +++ b/webapp/controller/TempToolsController.class.php @@ -107,9 +107,15 @@ class TempToolsController extends BaseController { $account['name'] = $row['name']; } } - echo 'account_id,name,rank' . "\n"; + echo 'account_id,name,rank,score,time' . "\n"; foreach ($accounts as $account) { - echo $account['account_id'] . ',' . $account['name'] . ',' . $account['ranked'] . "\n"; + echo + phpcommon\extractOpenId($account['account_id']) . ',' + . $account['name'] . ',' + . $account['ranked'] . ',' + . $account['value'] . ',' + . phpcommon\timestamp_to_datetime($account['modifytime']) + . "\n"; } }