This commit is contained in:
aozhiwei 2022-06-13 13:27:31 +08:00
parent 7f212f1c4c
commit 0207adc452

View File

@ -206,11 +206,21 @@ class TempToolsController extends BaseController {
public function exportData2() public function exportData2()
{ {
echo 'account_id' . "\n"; $type = getReqVal('type', '');
foreach ($rows as $row) { $accounts = array();
$channel = phpcommon\extractChannel($row['account_id']); $conn = myself()->_getMysql('');
if ($channel == 6516) { {
echo $row['account_id'] . "\n"; $rows = $conn->execQuery(
'SELECT * FROM t_user',
array(
)
);
echo 'account_id' . "\n";
foreach ($rows as $row) {
$channel = phpcommon\extractChannel($row['account_id']);
if ($channel == 6516) {
echo $row['account_id'] . "\n";
}
} }
} }
} }