3v4l.org

run code in 300+ PHP versions simultaneously
<?php function rsa_decrypt($value, $private_key_e, $public_key_n) { $resp = gmp_powm($value, $private_key_e, $public_key_n); return $resp; } $txt = base64decode("O6d9IbAVAAADGfCRXooAACNG006bSQEAL/q3GkE7AAA="); $e = "Rivest_Shamir_Adleman"; $n = "MTE6Mzc5MzgxMDk4NDM2MzQ5"; echo rsa_decrypt($txt, $e, $n); ?>
Output for git.master_jit, git.master, rfc.property-hooks
Fatal error: Uncaught Error: Call to undefined function base64decode() in /in/jfn5g:6 Stack trace: #0 {main} thrown in /in/jfn5g on line 6
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:
55.33 ms | 401 KiB | 8 Q