3v4l.org

run code in 300+ PHP versions simultaneously
<?php $pubkey = '...public key here...'; $privkey = '...private key here...'; function encrypt($data) { global $pubkey, $privkey; if (openssl_public_encrypt($data, $encrypted, $pubkey)) $data = base64_encode($encrypted); else throw new Exception('Unable to encrypt data. Perhaps it is bigger than the key size?'); return $data; } function decrypt($data) { global $pubkey, $privkey; if (openssl_private_decrypt(base64_decode($data), $decrypted, $privkey)) $data = $decrypted; else $data = ''; return $data; } $e = encrypt('hello'); var_dump($e); var_dump(decrypt($e));
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function openssl_public_encrypt() in /in/QQKdm:9 Stack trace: #0 /in/QQKdm(28): encrypt('hello') #1 {main} thrown in /in/QQKdm on line 9
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:
50.26 ms | 401 KiB | 8 Q