3v4l.org

run code in 300+ PHP versions simultaneously
<?php $xor = function ($str, $key = 1) { for ($i = 0; $i < strlen($str); $i++) { $str[$i] = chr(ord($str[$i]) ^ $key); } return $str; }; $enc = $xor("https://link.abaykan.com"); $dec = $xor($enc); var_dump($enc); var_dump($dec); $mangleed = $mangle(str_split('https://link.abaykan.com')); $unmangleed = $mangle($mangleed); print_r($unmangleed);
Output for git.master, git.master_jit, rfc.property-hooks
string(24) "iuuqr;..mhoj/`c`xj`o/bnl" string(24) "https://link.abaykan.com" Warning: Undefined variable $mangle in /in/grn9k on line 16 Fatal error: Uncaught Error: Value of type null is not callable in /in/grn9k:16 Stack trace: #0 {main} thrown in /in/grn9k on line 16
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:
59.16 ms | 401 KiB | 8 Q