repente

Untitled

Jun 19th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Mos\Dice;
  4.  
  5. /**
  6. * Show off a histogram.
  7. */
  8. include(__DIR__ . "/config.php");
  9. include(__DIR__ . "/autoload_namespace.php");
  10.  
  11. $rolls = $_GET["rolls"] ?? 6;
  12.  
  13. $dice = new DiceHistogram2($rolls);
  14.  
  15. for ($i = 0; $i < $rolls; $i++) {
  16. $dice->roll();
  17. }
  18.  
  19. $histogram = new Histogram();
  20. $histogram->injectData($dice);
  21.  
  22.  
  23. ?><h1>Display a histogram</h1>
  24.  
  25. <p><?= implode(", ", $histogram->getSerie()) ?></p>
  26. <pre><?= $histogram->getAsText() ?></pre>
Add Comment
Please, Sign In to add comment