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

View File

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