3v4l.org

run code in 300+ PHP versions simultaneously
<?php $server_seed = "39b7d32fcb743c244c569a56d6de4dc27577d6277d6cf155bdcba6d05befcb34"; $lotto = "0422262831"; $round_id = "1"; $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.1.2 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.30, 7.0.0 - 7.0.27, 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.6
$hash = 856672a71387c6bcdfa9af99128335827208939d0c5fc7eaf3a15cdd5ebd4fe8 substr($hash,0,8) = 856672a7 hexdec(856672a7) = 2238083751 2238083751 % 15 = 6 $roll = 6
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.1
Fatal error: Call to undefined function hash() in /in/f5qS3 on line 6
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: hash() in /in/f5qS3 on line 6
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: hash() in /in/f5qS3 on line 6
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: hash() in /in/f5qS3 on line 6

preferences:
290.58 ms | 401 KiB | 428 Q