3v4l.org

run code in 300+ PHP versions simultaneously
<?php $server_seed = "e7e2002fb07669d046ca3b5930ffba877d47e781ca7a5dfbbd5f60a51a21a9f1"; $lotto = "0708141934"; $round_id = "161189"; $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"); ?>
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.38, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
$hash = f15dd53fbfeefa4c9cf236880de8fcf484443f0e2061544ad6d22606a7418d34 substr($hash,0,8) = f15dd53f hexdec(856672a7) = 4049458495 2238083751 % 15 = 6 $roll = 10
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 $hash = f15dd53fbfeefa4c9cf236880de8fcf484443f0e2061544ad6d22606a7418d34 substr($hash,0,8) = f15dd53f hexdec(856672a7) = 4049458495 2238083751 % 15 = 6 $roll = 10

preferences:
187.24 ms | 402 KiB | 325 Q