3v4l.org

run code in 300+ PHP versions simultaneously
<?php echo roll_dice(); function roll_dice() { mt_srand(make_seed()); return clamp(mt_rand(0,7),1,6); } function make_seed() { list($usec,$sec) = explode(' ', microtime()); return (float) $sec + ((float) $usec * 65536); //100000 } function clamp($in, $min, $max) { return (int)(($in < $min) ? $min : ($in > $max) ? $max : $in); } ?>

This is an error 404

There are `0` results


preferences:
137.12 ms | 1399 KiB | 7 Q