3v4l.org

run code in 300+ PHP versions simultaneously
<?php function xor_encrypt($in) { $key = '<censored>'; $text = $in; $outText = ''; // Iterate through each character for($i=0;$i<strlen($text);$i++) { $outText .= $text[$i] ^ $key[$i % strlen($key)]; } return $outText; } $arr = array( "showpassword"=>"yes", "bgcolor"=>"#ffffff"); $arrd echo base64_encode(xor_encrypt(json_encode($arr))); echo json_decode(xor_encrypt(base64_decode($arrd))); ?>
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.7
Parse error: syntax error, unexpected 'echo' (T_ECHO) in /in/GsvDW on line 18
Process exited with code 255.

preferences:
184.72 ms | 1395 KiB | 36 Q