3v4l.org

run code in 300+ PHP versions simultaneously
<?php $key = '1521dc4feb1f44efec8a8936a28c1eb8'; // $key = base64_decode($key); $message = 'I want to decode this'; // $iv = mcrypt_create_iv(16, MCRYPT_DEV_URANDOM); $iv = '0000000000000000'; print $iv.'<p>'; $encrypted = mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $message, MCRYPT_MODE_CBC, $iv); $decrypted = mcrypt_decrypt(MCRYPT_RIJNDAEL_128, $key, $encrypted, MCRYPT_MODE_CBC, $iv); print base64_encode($encrypted); ?>
Output for git.master, git.master_jit, rfc.property-hooks
0000000000000000<p> Fatal error: Uncaught Error: Call to undefined function mcrypt_encrypt() in /in/uvjOo:10 Stack trace: #0 {main} thrown in /in/uvjOo on line 10
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:
40.4 ms | 401 KiB | 8 Q