3v4l.org

run code in 300+ PHP versions simultaneously
<?php $hundred = '123456456789012345689012345678901234567890123456789012345678901234567890'; echo strlen($hundred)."\n"; $password = 'foo'; $hash = password_hash($hundred . $password, PASSWORD_BCRYPT); $result = password_verify($hundred . 'BAR', $hash); var_dump($result);
Output for 5.5.0 - 5.5.38, 5.6.0 - 5.6.38, 7.0.0 - 7.0.31, 7.1.0 - 7.1.23, 7.2.0 - 7.2.11
72 bool(true)
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45
72 Fatal error: Call to undefined function password_hash() in /in/hBncO on line 5
Process exited with code 255.
Output for 4.4.5 - 4.4.9
72 Fatal error: Call to undefined function: password_hash() in /in/hBncO on line 5
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
72 Fatal error: Call to undefined function: password_hash() in /in/hBncO on line 5
Process exited with code 255.
Output for 4.3.0 - 4.3.1
72 Fatal error: Call to undefined function: password_hash() in /in/hBncO on line 5

preferences:
176.22 ms | 401 KiB | 280 Q