3v4l.org

run code in 300+ PHP versions simultaneously
<?php function pad_key($key){ // key is too large if(strlen($key) > 32) return false; // set sizes $sizes = array(16,24,32); // loop through sizes and pad key foreach($sizes as $s){ while(strlen($key) < $s) $key = $key."\0"; if(strlen($key) == $s) break; // finish if the key matches a size } // return return $key; } var_dump(base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_256, pad_key("bite"), 717098756, MCRYPT_MODE_ECB)));
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function mcrypt_encrypt() in /in/kQNoA:20 Stack trace: #0 {main} thrown in /in/kQNoA on line 20
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:
53.51 ms | 401 KiB | 8 Q