3v4l.org

run code in 300+ PHP versions simultaneously
<?php function gdr_encode($val) { // all characters that json_encode without escaping $chrs = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 !#$%&\'()*+,-.:;<=>?@[]^_`{|}~'; $base = strlen($chrs); $str = ''; while ($val > 0) { $str = $chrs[$val % $base] . $str; $val = (int)($val / $base); } return $str; } function gdr_decode($str) { // all characters that json_encode without escaping $chrs = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789 !#$%&\'()*+,-.:;<=>?@[]^_`{|}~'; $base = strlen($chrs); $map = array(); for ($i=0; $i<$base; $i++) { $map[$chrs[$i]] = $i; } $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, 500000, 999999, 1000000, 4294967295, 4294967296); foreach ($vals as $val) { $enc = gdr_encode($val); $dec = gdr_decode($enc); if ($dec !== $val) { echo "ERROR: $val => $enc => $dec\n"; } else if (strlen($enc)+2 > strlen($val)) { echo "\"$enc\" $val WORSE\n"; } else if (strlen($enc)+2 == strlen($val)) { echo "\"$enc\" $val EQUAL\n"; } else { echo "\"$enc\" $val\n"; } }
Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.25, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.27, 8.2.0 - 8.2.18, 8.3.0 - 8.3.4, 8.3.6
"" 0 WORSE "B" 1 WORSE "BH" 99 WORSE "BI" 100 WORSE "C*" 255 WORSE "C+" 256 WORSE "K=" 999 WORSE "K>" 1000 EQUAL "BQ!" 9999 WORSE "BQ#" 10000 EQUAL "H'f" 65535 EQUAL "H'g" 65536 EQUAL "L-`" 99999 EQUAL "L-{" 100000 "7G+" 500000 "BaNz" 999999 EQUAL "BaN0" 1000000 "7`7nL" 4294967295 "7`7nM" 4294967296
Output for 8.3.5
Warning: PHP Startup: Unable to load dynamic library 'sodium.so' (tried: /usr/lib/php/8.3.5/modules/sodium.so (libsodium.so.23: cannot open shared object file: No such file or directory), /usr/lib/php/8.3.5/modules/sodium.so.so (/usr/lib/php/8.3.5/modules/sodium.so.so: cannot open shared object file: No such file or directory)) in Unknown on line 0 "" 0 WORSE "B" 1 WORSE "BH" 99 WORSE "BI" 100 WORSE "C*" 255 WORSE "C+" 256 WORSE "K=" 999 WORSE "K>" 1000 EQUAL "BQ!" 9999 WORSE "BQ#" 10000 EQUAL "H'f" 65535 EQUAL "H'g" 65536 EQUAL "L-`" 99999 EQUAL "L-{" 100000 "7G+" 500000 "BaNz" 999999 EQUAL "BaN0" 1000000 "7`7nL" 4294967295 "7`7nM" 4294967296

preferences:
238.18 ms | 402 KiB | 369 Q