3v4l.org

run code in 300+ PHP versions simultaneously
<?php $secret = md5(NULL); function encrypt128($str, $secret) { $str = base64_encode($str); $block = 16; $pad = $block - (strlen($str) % $block); $str .= str_repeat(chr($pad), $pad); return base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $secret, $str, MCRYPT_MODE_ECB)); } function sslEncrypt128($str, $secret) { $str = base64_encode($str); $pad = 16 - (strlen($str) % 16); $str = ($pad != 16) ? $str . str_repeat(chr($pad), $pad) : $str; return base64_encode(openssl_encrypt($str, 'aes-256-ecb', $secret, OPENSSL_RAW_DATA)); } var_dump(encrypt128('proba', $secret)); var_dump(sslEncrypt128('proba', $secret));
Output for git.master, git.master_jit, rfc.property-hooks
Deprecated: md5(): Passing null to parameter #1 ($string) of type string is deprecated in /in/vTaWI on line 3 Fatal error: Uncaught Error: Call to undefined function mcrypt_encrypt() in /in/vTaWI:12 Stack trace: #0 /in/vTaWI(23): encrypt128('cHJvYmE=\x08\x08\x08\x08\x08\x08\x08...', 'd41d8cd98f00b20...') #1 {main} thrown in /in/vTaWI on line 12
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:
61.09 ms | 401 KiB | 8 Q