3v4l.org

run code in 300+ PHP versions simultaneously
<?php function xor_this_with($input, $key = '') { $return = ''; $length = strlen($input); $key_length = strlen($key); for ($i = 0; $i < $length; $i++) { $tmp = $input[$i]; for ($j = 0; $j < $key_length; $j++) { $tmp = chr(ord($tmp) ^ ord($key[$j])); } $return .= $tmp; } return $return; } $iv = base64_decode('ifblUEQdFIheTrKCCfURRzEvu9h4xwlX2cElHybes90='); $plain = 's:1:"1";'; $padded = str_pad($plain, 32); $hash = xor_this_with($iv, $plain); $hash = xor_this_with($hash, $padded); print base64_encode($hash);
Output for git.master, git.master_jit, rfc.property-hooks
ifblUEQdFIheTrKCCfURRzEvu9h4xwlX2cElHybes90=

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