3v4l.org

run code in 300+ PHP versions simultaneously
<?php $options = [ 'cost' => 12, 'salt' => mcrypt_create_iv(22, MCRYPT_DEV_URANDOM), ]; $hash = password_hash('tes', PASSWORD_BCRYPT, $options); if (password_verify('tes', $hash)) { echo 'Password is valid!'; } else { echo 'Invalid password.'; }
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/CMCLV:5 Stack trace: #0 {main} thrown in /in/CMCLV on line 5
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/CMCLV on line 8 Password is valid!
Output for 5.5.35, 5.6.21 - 5.6.28
Fatal error: Call to undefined function mcrypt_create_iv() in /in/CMCLV on line 5
Process exited with code 255.
Output for 5.5.24 - 5.5.34, 5.6.8 - 5.6.20
Password is valid!

preferences:
80.38 ms | 401 KiB | 48 Q