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($val) { return base_convert(strval($val), 16, 10); } $vals = array(0, 1, 99, 100, 255, 256, 999, 1000, 9999, 10000, 65535, 65536, 99999, 100000, 999999, 1000000, 4294967295, 4294967296); 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 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "" 0 WORSE Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "B" 1 WORSE Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "jB" 99 WORSE Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "kB" 100 WORSE Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "=D" 255 WORSE Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "AE" 256 WORSE Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "nP" 999 WORSE Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "oP" 1000 EQUAL Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "PcC" 9999 WORSE Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "QcC" 10000 EQUAL Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "==P" 65535 EQUAL Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "AAQ" 65536 EQUAL Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "faY" 99999 EQUAL Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "gaY" 100000 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "=I0D" 999999 EQUAL Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "AJ0D" 1000000 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "=====D" 4294967295 Deprecated: Invalid characters passed for attempted conversion, these have been ignored in /in/3PWVP on line 15 "AAAAAE" 4294967296
Output for 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.10, 7.2.0 - 7.2.33, 7.3.16 - 7.3.33
"" 0 WORSE "B" 1 WORSE "jB" 99 WORSE "kB" 100 WORSE "=D" 255 WORSE "AE" 256 WORSE "nP" 999 WORSE "oP" 1000 EQUAL "PcC" 9999 WORSE "QcC" 10000 EQUAL "==P" 65535 EQUAL "AAQ" 65536 EQUAL "faY" 99999 EQUAL "gaY" 100000 "=I0D" 999999 EQUAL "AJ0D" 1000000 "=====D" 4294967295 "AAAAAE" 4294967296
Output for 5.0.0 - 5.0.5, 5.1.0 - 5.1.6
Fatal error: Call to undefined function json_encode() in /in/3PWVP on line 20
Process exited with code 255.
Output for 4.4.5 - 4.4.9
Fatal error: Call to undefined function: json_encode() in /in/3PWVP on line 20
Process exited with code 255.
Output for 4.3.2 - 4.3.11, 4.4.0 - 4.4.4
Fatal error: Call to undefined function: json_encode() in /in/3PWVP on line 20
Process exited with code 255.
Output for 4.3.0 - 4.3.1
Fatal error: Call to undefined function: json_encode() in /in/3PWVP on line 20

preferences:
234.95 ms | 401 KiB | 354 Q