3v4l.org

run code in 300+ PHP versions simultaneously
<?php $hash = 'FdsfDFwfdfs23C4DSF32Fs0ozkbHI8mDIUxjEqT/oJCm32Ly2Rjs5vzUSg9do0X1tE7CC0pQZg9MiSHrZVdXlMuy6VclOhPdLU5pHRKaTu/'; $salt = '25c5850100451f12'; $algo = '$6'; $password = 'test'; $cost = '$rounds=25000$'; function check_password($hash, $salt, $password){ $hash = ($algo.$cost.$salt.'$'.$hash); if($hash == crypt($password, substr($hash, 0, 33))){ //Regenerate new hash and salt for given password echo 'yes'; return true; }else{ echo 'no'; return false; } } check_password($hash, $salt, $password); ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $algo in /in/lc0a5 on line 9 Warning: Undefined variable $cost in /in/lc0a5 on line 9 no

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
55.68 ms | 401 KiB | 8 Q