3v4l.org

run code in 300+ PHP versions simultaneously
<?php function weightedRand($min, $max, $gamma) { $offset = $max - $min + 1; return floor($min + pow(lcg_value(), $gamma) * $offset); } $ola = weightedRand(1, 10, 2); print_r($ola);

preferences:
24.16 ms | 402 KiB | 5 Q