3v4l.org

run code in 300+ PHP versions simultaneously
<?php define("BLOWFISH_PRE", "$2y$05$"); define("BLOWFISH_SUF", "$"); function pwhash($password) { $salt = str_repeat('A', 21); return crypt($password, BLOWFISH_PRE . $salt . BLOWFISH_SUF); } var_dump(pwhash('test'));

preferences:
27.36 ms | 407 KiB | 5 Q