Update users.php

parent 6721b59c
Pipeline #90 canceled with stages
<? require_once($_SERVER["DOCUMENT_ROOT"]."/bitrix/modules/main/include/prolog_before.php");
// $fp = fopen('php://output', 'wb');
$fp = fopen('users.csv', 'wb');
$res = Bitrix\Main\UserTable::getList(Array(
"select"=>Array("*"),
));
while ($arRes = $res->fetch()) {
fputcsv($fp, $arRes, ';');
}
fclose($fp);
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment