3v4l.org

run code in 300+ PHP versions simultaneously
<?php $str = "Uo9kOMrb8Zfx8cHXT65JPNGYEbiYq90YNImYPdLkOo8w8Y8i8cPrRcD1ScSYEY8YB29ZRsvaQNHfRsuYEY91JaGYB29cTMniNsLkT79v8ZfcOMnpPImYRcywABgokJoH7JCmjZcolhT"; function base62_decode ($data) { $outstring = ''; $len = strlen($data); for ($i = 0; $i < $len; $i += 11) { $chunk = substr($data, $i, 11); $outlen = floor((strlen($chunk) * 6) / 8); $y = gmp_strval(gmp_init(ltrim($chunk, '0'), 62), 16); $pad = str_pad($y, $outlen * 2, '0', STR_PAD_LEFT); $outstring .= pack('H*', $pad); } return $outstring; } echo(base62_decode($str));
Output for git.master, git.master_jit, rfc.property-hooks
m�\�\��+ A+r�L���'��<���gG�y�c�A����=8���o}M�XF�'��l΍����W��!�)���"`$FA߁��`�*���w�%�w�_0

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:
39.63 ms | 401 KiB | 8 Q