3v4l.org

run code in 300+ PHP versions simultaneously
<?php $min = 17; $max = $min + 48; // 48 is to fit the results in my console for ($testseed=$min; $testseed<$max; $testseed++) { mt_srand( $testseed ); $r = mt_rand(); printf( "mt_srand( 0x%08x ): mt_rand() == 0x%08x == %d\n" ); } ?>

preferences:
34.52 ms | 402 KiB | 5 Q