<?php
// CBPCalc :: FunctionRand()
// /dist/bitrix/modules/bizproc/classes/general/calc.php:471
private function FunctionRand($args)
{
$ar = $this->ArrgsToArray($args);
$min = (int)array_shift($ar);
$max = (int)array_shift($ar);
if (!$max)
{
$max = mt_getrandmax();
}
return mt_rand($min, $max);
}