Skip to content

Instantly share code, notes, and snippets.

@aclips
Created November 23, 2018 06:22
Show Gist options
  • Save aclips/1f24af89bf88408af6fca31670d8d966 to your computer and use it in GitHub Desktop.
Save aclips/1f24af89bf88408af6fca31670d8d966 to your computer and use it in GitHub Desktop.
Bitrix случайная выборка пользователя
<?
$users = \Bitrix\Main\UserTable::getList([
"order" => [
"RAND" => "asc"
],
'runtime' => array(
new \Bitrix\Main\Entity\ExpressionField('RAND', 'RAND()')
),
"limit" => 10
])->fetchAll();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment