3v4l.org

run code in 300+ PHP versions simultaneously
<?php class DES{ public static function encrypt($str,$key){ $str = self::pkcs5_pad($str, 8); if (strlen($str) % 8) { $str = str_pad($str, strlen($str) + 8 - strlen($str) % 8, "\0"); } $sign = openssl_encrypt ( $str, 'DES-EDE3' , $key, OPENSSL_RAW_DATA | OPENSSL_NO_PADDING , '' ); return strtoupper(bin2hex($sign)); } private static function pkcs5_pad($text, $blocksize) { $pad = $blocksize - (strlen($text) % $blocksize); return $text . str_repeat(chr($pad), $pad); } } $res = DES::encrypt('test', 'aaaabbbb'); var_dump($res);
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function openssl_encrypt() in /in/idvec:10 Stack trace: #0 /in/idvec(27): DES::encrypt('test\x04\x04\x04\x04', 'aaaabbbb') #1 {main} thrown in /in/idvec 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:
80 ms | 401 KiB | 8 Q