This commit is contained in:
aozhiwei 2022-06-16 14:10:43 +08:00
parent afddbf1751
commit 17a528e653

View File

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