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()
{
echo 'account_id' . "\n";
foreach ($rows as $row) {
$channel = phpcommon\extractChannel($row['account_id']);
if ($channel == 6516) {
echo $row['account_id'] . "\n";
$type = getReqVal('type', '');
$accounts = array();
$conn = myself()->_getMysql('');
{
$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";
}
}
}
}