3v4l.org

run code in 300+ PHP versions simultaneously
<?php $cip = MCRYPT_RIJNDAEL_128; $key = '$2y$10$7FaHtwquHqZH9Ya0hqDUGelgF'; $mod = MCRYPT_MODE_ECB; $encrypted_email = 'CZnGTHDiYshMK0kuQW/Szw=='; //echo base64_encode( echo mcrypt_encrypt(MCRYPT_RIJNDAEL_128, '$2y$10$7FaHtwquHqZH9Ya0hqDUGelgF', 'av_29@mailinator.com', MCRYPT_MODE_ECB); echo"\n"; echo trim(mcrypt_decrypt($cip, $key, base64_decode(urldecode($encrypted_email)), $mod)); echo "\n"; $encrypted_email = base64_decode($encrypted_email); $dec = trim(mcrypt_decrypt($cip, $key, $encrypted_email, $mod)); //echo $enc; //echo "\n"; echo $dec;
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Undefined constant "MCRYPT_RIJNDAEL_128" in /in/UAmV8:2 Stack trace: #0 {main} thrown in /in/UAmV8 on line 2
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:
170.97 ms | 405 KiB | 5 Q