3v4l.org

run code in 300+ PHP versions simultaneously
<?php $output = '1234 5678 9012 3456'; echo $output; $mcrypt_iv_size = mcrypt_get_iv_size(MCRYPT_RIJNDAEL_256, MCRYPT_MODE_CBC); $mcrypt_iv = mcrypt_create_iv($mcrypt_iv_size, MCRYPT_RAND); $output = mcrypt_encrypt(MCRYPT_RIJNDAEL_256, $passkey, $output, MCRYPT_MODE_CBC, $mcrypt_iv); $output = base64_encode($output); echo $output; $output = base64_decode($output); $output = mcrypt_decrypt(MCRYPT_RIJNDAEL_256, $passkey, $output, MCRYPT_MODE_CBC, $mcrypt_iv); echo $output; ?>
Output for git.master, git.master_jit, rfc.property-hooks
1234 5678 9012 3456 Fatal error: Uncaught Error: Call to undefined function mcrypt_get_iv_size() in /in/4GY0P:5 Stack trace: #0 {main} thrown in /in/4GY0P on line 5
Process exited with code 255.

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:
48.44 ms | 401 KiB | 8 Q