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); echo sprintf("%10s %9s %5s\n", 'num', 'str', 'cmp'); foreach ($vals as $val) { $enc = gdr_encode($val); $dec = gdr_decode($enc); if ($dec !== $val) { echo "ERROR: $val => $enc => $dec\n"; } else { echo sprintf("%10d %9s %5d\n", $dec, "\"$enc\"", strlen($enc)+2-strlen($val)); } }
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 77) Position 1 = 9, Position 2 = 44
Branch analysis from position: 9
2 jumps found. (Code = 78) Position 1 = 10, Position 2 = 44
Branch analysis from position: 10
2 jumps found. (Code = 43) Position 1 = 20, Position 2 = 29
Branch analysis from position: 20
1 jumps found. (Code = 42) Position 1 = 43
Branch analysis from position: 43
1 jumps found. (Code = 42) Position 1 = 9
Branch analysis from position: 9
Branch analysis from position: 29
1 jumps found. (Code = 42) Position 1 = 9
Branch analysis from position: 9
Branch analysis from position: 44
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 44
filename:       /in/pHo40
function name:  (null)
number of ops:  46
compiled vars:  !0 = $vals, !1 = $val, !2 = $enc, !3 = $dec
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   31     0  E >   ASSIGN                                                   !0, <array>
   32     1        INIT_FCALL                                               'sprintf'
          2        SEND_VAL                                                 '%2510s+%259s+%255s%0A'
          3        SEND_VAL                                                 'num'
          4        SEND_VAL                                                 'str'
          5        SEND_VAL                                                 'cmp'
          6        DO_ICALL                                         $5      
          7        ECHO                                                     $5
   33     8      > FE_RESET_R                                       $6      !0, ->44
          9    > > FE_FETCH_R                                               $6, !1, ->44
   34    10    >   INIT_FCALL                                               'gdr_encode'
         11        SEND_VAR                                                 !1
         12        DO_FCALL                                      0  $7      
         13        ASSIGN                                                   !2, $7
   35    14        INIT_FCALL                                               'gdr_decode'
         15        SEND_VAR                                                 !2
         16        DO_FCALL                                      0  $9      
         17        ASSIGN                                                   !3, $9
   36    18        IS_NOT_IDENTICAL                                         !3, !1
         19      > JMPZ                                                     ~11, ->29
   37    20    >   ROPE_INIT                                     7  ~13     'ERROR%3A+'
         21        ROPE_ADD                                      1  ~13     ~13, !1
         22        ROPE_ADD                                      2  ~13     ~13, '+%3D%3E+'
         23        ROPE_ADD                                      3  ~13     ~13, !2
         24        ROPE_ADD                                      4  ~13     ~13, '+%3D%3E+'
         25        ROPE_ADD                                      5  ~13     ~13, !3
         26        ROPE_END                                      6  ~12     ~13, '%0A'
         27        ECHO                                                     ~12
         28      > JMP                                                      ->43
   39    29    >   INIT_FCALL                                               'sprintf'
         30        SEND_VAL                                                 '%2510d+%259s+%255d%0A'
         31        SEND_VAR                                                 !3
         32        ROPE_INIT                                     3  ~18     '%22'
         33        ROPE_ADD                                      1  ~18     ~18, !2
         34        ROPE_END                                      2  ~17     ~18, '%22'
         35        SEND_VAL                                                 ~17
         36        STRLEN                                           ~20     !2
         37        ADD                                              ~21     ~20, 2
         38        STRLEN                                           ~22     !1
         39        SUB                                              ~23     ~21, ~22
         40        SEND_VAL                                                 ~23
         41        DO_ICALL                                         $24     
         42        ECHO                                                     $24
   33    43    > > JMP                                                      ->9
         44    >   FE_FREE                                                  $6
   41    45      > RETURN                                                   1

Function gdr_encode:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 42) Position 1 = 13
Branch analysis from position: 13
2 jumps found. (Code = 44) Position 1 = 15, Position 2 = 6
Branch analysis from position: 15
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 6
2 jumps found. (Code = 44) Position 1 = 15, Position 2 = 6
Branch analysis from position: 15
Branch analysis from position: 6
filename:       /in/pHo40
function name:  gdr_encode
number of ops:  17
compiled vars:  !0 = $val, !1 = $chrs, !2 = $base, !3 = $str
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    3     0  E >   RECV                                             !0      
    5     1        ASSIGN                                                   !1, 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+%21%23%24%25%26%27%28%29%2A%2B%2C-.%3A%3B%3C%3D%3E%3F%40%5B%5D%5E_%60%7B%7C%7D%7E'
    6     2        STRLEN                                           ~5      !1
          3        ASSIGN                                                   !2, ~5
    7     4        ASSIGN                                                   !3, ''
    8     5      > JMP                                                      ->13
    9     6    >   MOD                                              ~8      !0, !2
          7        FETCH_DIM_R                                      ~9      !1, ~8
          8        CONCAT                                           ~10     ~9, !3
          9        ASSIGN                                                   !3, ~10
   10    10        DIV                                              ~12     !0, !2
         11        CAST                                          4  ~13     ~12
         12        ASSIGN                                                   !0, ~13
    8    13    >   IS_SMALLER                                               0, !0
         14      > JMPNZ                                                    ~15, ->6
   12    15    > > RETURN                                                   !3
   13    16*     > RETURN                                                   null

End of function gdr_encode

Function gdr_decode:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 42) Position 1 = 11
Branch analysis from position: 11
2 jumps found. (Code = 44) Position 1 = 13, Position 2 = 7
Branch analysis from position: 13
1 jumps found. (Code = 42) Position 1 = 22
Branch analysis from position: 22
2 jumps found. (Code = 44) Position 1 = 25, Position 2 = 16
Branch analysis from position: 25
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 16
2 jumps found. (Code = 44) Position 1 = 25, Position 2 = 16
Branch analysis from position: 25
Branch analysis from position: 16
Branch analysis from position: 7
2 jumps found. (Code = 44) Position 1 = 13, Position 2 = 7
Branch analysis from position: 13
Branch analysis from position: 7
filename:       /in/pHo40
function name:  gdr_decode
number of ops:  27
compiled vars:  !0 = $str, !1 = $chrs, !2 = $base, !3 = $map, !4 = $i, !5 = $val
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   15     0  E >   RECV                                             !0      
   17     1        ASSIGN                                                   !1, 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+%21%23%24%25%26%27%28%29%2A%2B%2C-.%3A%3B%3C%3D%3E%3F%40%5B%5D%5E_%60%7B%7C%7D%7E'
   18     2        STRLEN                                           ~7      !1
          3        ASSIGN                                                   !2, ~7
   19     4        ASSIGN                                                   !3, <array>
   20     5        ASSIGN                                                   !4, 0
          6      > JMP                                                      ->11
   21     7    >   FETCH_DIM_R                                      ~11     !1, !4
          8        ASSIGN_DIM                                               !3, ~11
          9        OP_DATA                                                  !4
   20    10        PRE_INC                                                  !4
         11    >   IS_SMALLER                                               !4, !2
         12      > JMPNZ                                                    ~14, ->7
   23    13    >   ASSIGN                                                   !5, 0
   24    14        ASSIGN                                                   !4, 0
         15      > JMP                                                      ->22
   25    16    >   ASSIGN_OP                                     3          !5, !2
   26    17        FETCH_DIM_R                                      ~18     !0, !4
         18        FETCH_DIM_R                                      ~19     !3, ~18
         19        CAST                                          4  ~20     ~19
         20        ASSIGN_OP                                     1          !5, ~20
   24    21        PRE_INC                                                  !4
         22    >   STRLEN                                           ~23     !0
         23        IS_SMALLER                                               !4, ~23
         24      > JMPNZ                                                    ~24, ->16
   28    25    > > RETURN                                                   !5
   29    26*     > RETURN                                                   null

End of function gdr_decode

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
162.33 ms | 1398 KiB | 17 Q