3v4l.org

run code in 300+ PHP versions simultaneously
<?php function gdr_encode($val) { $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!='; $base = strlen($chars); $str = ''; while ($val > 0) { $str .= $chars[$val % $base]; $val = (int)($val / $base); } return $str; } function gdr_decode($str) { $chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!='; $base = strlen($chars); $map = array(); for ($i=0; $i<$base; $i++) { $map[$chars[$i]] = $base; } echo print_r($map, false) . "\n"; $val = 0; for ($i=0; $i<strlen($str); $i++) { $val *= $base; $val += (int)$map[$str[$i]]; } return $val; } //$vals = array(0, 1, 99, 100, 255, 256, 999, 1000, 9999, 10000, 65535, 65536, 99999, 100000, 999999, 1000000, 4294967295, 4294967296); $vals = array(1); foreach ($vals as $val) { $enc = json_encode(gdr_encode($val)); $dec = json_encode(gdr_decode($enc)); $val = json_encode($val); if (strlen($enc) > strlen($val)) { echo "$enc $val WORSE\n"; } else if (strlen($enc) == strlen($val)) { echo "$enc $val EQUAL\n"; } else { echo "$enc $val\n"; } }
Output for git.master, git.master_jit, rfc.property-hooks
Array ( [A] => 64 [B] => 64 [C] => 64 [D] => 64 [E] => 64 [F] => 64 [G] => 64 [H] => 64 [I] => 64 [J] => 64 [K] => 64 [L] => 64 [M] => 64 [N] => 64 [O] => 64 [P] => 64 [Q] => 64 [R] => 64 [S] => 64 [T] => 64 [U] => 64 [V] => 64 [W] => 64 [X] => 64 [Y] => 64 [Z] => 64 [a] => 64 [b] => 64 [c] => 64 [d] => 64 [e] => 64 [f] => 64 [g] => 64 [h] => 64 [i] => 64 [j] => 64 [k] => 64 [l] => 64 [m] => 64 [n] => 64 [o] => 64 [p] => 64 [q] => 64 [r] => 64 [s] => 64 [t] => 64 [u] => 64 [v] => 64 [w] => 64 [x] => 64 [y] => 64 [z] => 64 [0] => 64 [1] => 64 [2] => 64 [3] => 64 [4] => 64 [5] => 64 [6] => 64 [7] => 64 [8] => 64 [9] => 64 [!] => 64 [=] => 64 ) 1 Warning: Undefined array key """ in /in/e2KK9 on line 25 Warning: Undefined array key """ in /in/e2KK9 on line 25 "B" 1 WORSE

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:
91.82 ms | 403 KiB | 8 Q