3v4l.org

run code in 300+ PHP versions simultaneously
<?php $server_seed = "e7e2002fb07669d046ca3b5930ffba877d47e781ca7a5dfbbd5f60a51a21a9f1"; $lotto = "0708141934"; $round_id = "161188"; $hash = hash("sha256",$server_seed."-".$lotto."-".$round_id); $roll = hexdec(substr($hash,0,8)) % 15; // Print værdien af $hash print("\$hash = $hash\n"); // Print værdien af substr($hash,0,8) print("substr(\$hash,0,8) = ".(String)substr($hash,0,8)."\n"); // Print værdien af hexdec(substr($hash,0,8)) print("hexdec(856672a7) = ".(String)hexdec(substr($hash,0,8))."\n"); // Print værdien af 856672a7 % 15 print("2238083751 % 15 = ".(2238083751 % 15)."\n"); // Print værdien af roll print("\$roll = $roll"); ?>

preferences:
53.05 ms | 402 KiB | 5 Q