3v4l.org

run code in 300+ PHP versions simultaneously
<?php function xor_this($string) { // Let's define our key here $key = adeabecc; // Our plaintext/ciphertext $text =$string; // Our output text $outText = ''; // Iterate through each character $outText = $text ^ $key; //echo 'i='.$i.', '.'j='.$j.', '.$outText{$i}.'<br />'; //for debugging return $outText; } echo xor_this('adeabecc'); //echo xor_this(12341234);
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught Error: Undefined constant "adeabecc" in /in/R8Z9n:6 Stack trace: #0 /in/R8Z9n(22): xor_this('adeabecc') #1 {main} thrown in /in/R8Z9n 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:
38.57 ms | 401 KiB | 8 Q