3v4l.org

run code in 300+ PHP versions simultaneously
<?php // testing: http://www.phpsadness.com/sad/47 $password = "ximaz"; $broken_hash = "61529519452809720000000000000000"; $hash = md5($password); if (md5($password) == $broken_hash) { print "Broken - Allowed!\n"; } if (md5($password) === $broken_hash) { print "Type-Strict Broken - Allowed!\n"; }

preferences:
32.34 ms | 402 KiB | 5 Q