3v4l.org

run code in 300+ PHP versions simultaneously
<?php $key = hex2bin('000102,mn030405060708090a0b0c0d0e0f'); $message = hex2bin('5061726101676f6e000300'); $iv = mcrypt_create_iv(16, MCRYPT_DEV_URANDOM); $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 $decrypted; ?>
Output for git.master, git.master_jit, rfc.property-hooks
Warning: hex2bin(): Hexadecimal input string must have an even length in /in/325PD on line 4 Fatal error: Uncaught Error: Call to undefined function mcrypt_create_iv() in /in/325PD:6 Stack trace: #0 {main} thrown in /in/325PD on line 6
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:
42.76 ms | 401 KiB | 8 Q