3v4l.org

run code in 300+ PHP versions simultaneously
<?php $options = [ 'cost' => 11, 'salt' => mcrypt_create_iv(22, MCRYPT_DEV_URANDOM), ]; $hash = password_hash("password", PASSWORD_BCRYPT, $options); $pass = "password"; if(password_verify($pass, $hash)) { echo("Verified."); }
Output for 7.0.6 - 7.0.20, 7.1.0 - 7.1.20, 7.2.0 - 7.2.6
Fatal error: Uncaught Error: Call to undefined function mcrypt_create_iv() in /in/gvp3r:4 Stack trace: #0 {main} thrown in /in/gvp3r on line 4
Process exited with code 255.
Output for 7.0.0 - 7.0.5
Deprecated: password_hash(): Use of the 'salt' option to password_hash is deprecated in /in/gvp3r on line 6 Verified.
Output for 5.5.35, 5.6.21 - 5.6.28
Fatal error: Call to undefined function mcrypt_create_iv() in /in/gvp3r on line 4
Process exited with code 255.
Output for 5.5.24 - 5.5.34, 5.6.8 - 5.6.20
Verified.
Output for 5.4.0 - 5.4.45
Fatal error: Call to undefined function password_hash() in /in/gvp3r on line 6
Process exited with code 255.

preferences:
83.13 ms | 401 KiB | 93 Q