ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
class.ilRandom.php
Go to the documentation of this file.
1 <?php
2 
3 /* Copyright (c) 1998-2009 ILIAS open source, Extended GPL, see docs/LICENSE */
4 
10 class ilRandom
11 {
12  private function logIfPossible(callable $c): void
13  {
14  global $DIC;
15 
16  if (isset($DIC['ilLoggerFactory'])) {
17  $c($DIC->logger()->rnd());
18  }
19  }
20 
21  public function int(int $min = 0, int $max = PHP_INT_MAX): int
22  {
23  try {
24  return random_int($min, $max);
25  } catch (Throwable $e) {
26  $this->logIfPossible(static function (ilLogger $logger): void {
27  $logger->logStack(ilLogLevel::ERROR);
28  $logger->error('No suitable random number generator found.');
29  });
30  throw $e;
31  }
32  }
33 }
$c
Definition: cli.php:38
logStack(?int $a_level=null, string $a_message='')
logIfPossible(callable $c)
global $DIC
Definition: feed.php:28
error(string $a_message)
int(int $min=0, int $max=PHP_INT_MAX)
Wrapper for generation of random numbers, strings, bytes.