3v4l.org

run code in 300+ PHP versions simultaneously
<?php $MaintenanceCycleItemList_arr = array('キッチン', 'トイレ', '浴室', '洗面台', '水洗'); // 部屋番要一覧のSQLで作る $array['部屋番号'][] = '0101'; $array['部屋番号'][] = '0102'; $array['部屋番号'][] = '0103'; $array['部屋番号'][] = '0104'; $array['部屋番号'][] = '0105'; $array['部屋番号'][] = '0401'; /* なぜか出来ない if ( array_key_exists('0101', $array) ) { } else { $array['部屋番号'][] = '0101'; } */ // 工事コードと枝番が前のフィールドから変更になったら実行 $array['0101']['工事コード_枝番'][] = '0123456_01'; // 毎回実行 $array['0101']['0123456_01']['明細フィールド'][] = array('1', '1st暮らす キッチン STANDARD', '', 'キッチン', '1st暮らす', 'キッチン', 'キッチン', 'スタンダード', '', '1', '1500000', '1500000'); // キッチン等、該当の項目だった場合に実行 $array['0101']['●']['キッチン'] = '●'; // メインテーブルのフラグ的なやつ $array['0101']['●'][] = 'キッチン'; // サブテーブルの明細表紙に記載する該当した項目名(カンマ区切り) $array['0101']['0123456_01']['項目名'][] = 'キッチン'; $array['0101']['0123456_01']['明細フィールド'][] = array('2', '1st暮らす 浴室', 'ユニバーサル', '浴室', '1st暮らす', '浴室', '浴室', 'ユニバーサル', '', '1', '1480000', '1480000'); //$array['0101']['●']['浴室'] = '●'; $array['0101']['●'][] = '浴室'; $array['0101']['0123456_01']['項目名'][] = '浴室'; $array['0101']['0123456_01']['明細フィールド'][] = array('3', '', '', '', '', '', '', '', '', '', '', ''); $array['0101']['0123456_01']['明細フィールド'][] = array('4', '特別値引き', '端数値引き', '1', '-30000', '-30000'); $array['0101']['工事コード_枝番'][] = '0123456_02'; $array['0101']['0123456_02']['明細フィールド'][] = array('1', '1st暮らす トイレ', 'ベーシック', 'トイレ', '1st暮らす', 'トイレ', 'トイレ', 'ベーシック', '', '1', '300000', '300000'); //$array['0101']['●']['トイレ'] = '●'; $array['0101']['●'][] = 'トイレ'; $array['0101']['0123456_02']['項目名'][] = 'トイレ'; $array['0401']['工事コード_枝番'][]= '9999999_00'; $array['0401']['9999999_00']['明細フィールド'][] = array('1', '畳 表替', '大', '3', '5000', '15000'); //$array['0401']['●']['畳'] = '●'; $array['0401']['●'][] = '畳'; $array['0401']['9999999_00']['項目名'][] = '畳'; foreach ($array['部屋番号'] as $RoomNo) { print '部屋番号: ' . $RoomNo . "\n"; //$RoomNo = '0101'; /* foreach ($array[$RoomNo]['明細フィールド'] as $key) { print '<tr>' . '<td>' . $key[0] . '</td>' . '<td>' . $key[1] . '</td>' . '</tr>' . "\n"; } */ // 部屋番号に該当する明細があれば // 一次に部屋番号($RoomNo)があるか if ( array_key_exists($RoomNo, $array) ) { //$MaintenanceCycleItemList_arr $buyList_arr = array(); //部屋番号($RoomNo)にある●を列挙 foreach ($array[$RoomNo]['●'] as $key1) { $buyList_arr[] = $key1; // ['●']['キッチン']等が存在するか if ( array_key_exists($key1, $array[$RoomNo]['●']['キッチン'] ) ) { print 'キッチンあったー!!!' . "/n"; } } print '--------------------------------------------------' . "\n"; print '該当商品名' . "\n"; print ' ' . implode(",", $buyList_arr) . "\n"; print '--------------------------------------------------' . "\n"; //部屋番号($RoomNo)にある工事コード_枝番を列挙 foreach ($array[$RoomNo]['工事コード_枝番'] as $key1) { print '工事コード_枝番' . "\n"; print ' ' . $key1 . "\n"; // ['工事コード_枝番']が存在するか if ( array_key_exists($key1, $array[$RoomNo] ) ) { // print $key1 . 'には項目があったよ' . "\n"; $HitList_arr = array(); foreach ($array[$RoomNo][$key1]['項目名'] as $key2) { $HitList_arr[] = $key2; } print 'ヒットした項目名' . "\n"; print ' ' . implode(",", $HitList_arr) . "\n"; print '明細' . "\n"; print '┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓' . "\n"; //部屋番号($RoomNo)にある明細フィールドを列挙 foreach ($array[$RoomNo][$key1]['明細フィールド'] as $key2) { print '┃' . $key2[0] . ' | ' . $key2[1] . "\n"; /* // ['明細フィールド']が存在するか if ( array_key_exists($key1[0], $array[$RoomNo] ) ) { print $key1[0] . 'には項目があったよ' . "\n"; foreach ($array[$RoomNo][$key1[0]] as $key2) { print 'ヒットした明細:' . $key2[0] . "\n"; } } else { print $key1 . 'には項目名がないよ' . "\n"; } */ } print '┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛' . "\n"; } else { print $key1 . 'には項目名がないよ' . "\n"; } } /* foreach ($array[$RoomNo]['明細フィールド']['項目名'] as $key) { print '<tr>' . '<td>' . $key[0] . '</td>' . '<td>' . $key[1] . '</td>' . '</tr>' . "\n"; } */ } else { // print_r($array); print '┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓' . "\n"; print '┃       該当明細はありませんでした。       ┃' . "\n"; print '┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛' . "\n"; } } //print_r($array); ?>
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 77) Position 1 = 103, Position 2 = 191
Branch analysis from position: 103
2 jumps found. (Code = 78) Position 1 = 104, Position 2 = 191
Branch analysis from position: 104
2 jumps found. (Code = 43) Position 1 = 109, Position 2 = 187
Branch analysis from position: 109
2 jumps found. (Code = 77) Position 1 = 113, Position 2 = 123
Branch analysis from position: 113
2 jumps found. (Code = 78) Position 1 = 114, Position 2 = 123
Branch analysis from position: 114
2 jumps found. (Code = 43) Position 1 = 121, Position 2 = 122
Branch analysis from position: 121
1 jumps found. (Code = 42) Position 1 = 113
Branch analysis from position: 113
Branch analysis from position: 122
Branch analysis from position: 123
2 jumps found. (Code = 77) Position 1 = 137, Position 2 = 185
Branch analysis from position: 137
2 jumps found. (Code = 78) Position 1 = 138, Position 2 = 185
Branch analysis from position: 138
2 jumps found. (Code = 43) Position 1 = 145, Position 2 = 181
Branch analysis from position: 145
2 jumps found. (Code = 77) Position 1 = 150, Position 2 = 154
Branch analysis from position: 150
2 jumps found. (Code = 78) Position 1 = 151, Position 2 = 154
Branch analysis from position: 151
1 jumps found. (Code = 42) Position 1 = 150
Branch analysis from position: 150
Branch analysis from position: 154
2 jumps found. (Code = 77) Position 1 = 169, Position 2 = 178
Branch analysis from position: 169
2 jumps found. (Code = 78) Position 1 = 170, Position 2 = 178
Branch analysis from position: 170
1 jumps found. (Code = 42) Position 1 = 169
Branch analysis from position: 169
Branch analysis from position: 178
1 jumps found. (Code = 42) Position 1 = 184
Branch analysis from position: 184
1 jumps found. (Code = 42) Position 1 = 137
Branch analysis from position: 137
Branch analysis from position: 178
Branch analysis from position: 154
Branch analysis from position: 181
1 jumps found. (Code = 42) Position 1 = 137
Branch analysis from position: 137
Branch analysis from position: 185
1 jumps found. (Code = 42) Position 1 = 190
Branch analysis from position: 190
1 jumps found. (Code = 42) Position 1 = 103
Branch analysis from position: 103
Branch analysis from position: 185
Branch analysis from position: 123
Branch analysis from position: 187
1 jumps found. (Code = 42) Position 1 = 103
Branch analysis from position: 103
Branch analysis from position: 191
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 191
filename:       /in/EJDlv
function name:  (null)
number of ops:  193
compiled vars:  !0 = $MaintenanceCycleItemList_arr, !1 = $array, !2 = $RoomNo, !3 = $buyList_arr, !4 = $key1, !5 = $HitList_arr, !6 = $key2
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    3     0  E >   ASSIGN                                                   !0, <array>
    6     1        FETCH_DIM_W                                      $8      !1, '%E9%83%A8%E5%B1%8B%E7%95%AA%E5%8F%B7'
          2        ASSIGN_DIM                                               $8
          3        OP_DATA                                                  '0101'
    7     4        FETCH_DIM_W                                      $10     !1, '%E9%83%A8%E5%B1%8B%E7%95%AA%E5%8F%B7'
          5        ASSIGN_DIM                                               $10
          6        OP_DATA                                                  '0102'
    8     7        FETCH_DIM_W                                      $12     !1, '%E9%83%A8%E5%B1%8B%E7%95%AA%E5%8F%B7'
          8        ASSIGN_DIM                                               $12
          9        OP_DATA                                                  '0103'
    9    10        FETCH_DIM_W                                      $14     !1, '%E9%83%A8%E5%B1%8B%E7%95%AA%E5%8F%B7'
         11        ASSIGN_DIM                                               $14
         12        OP_DATA                                                  '0104'
   10    13        FETCH_DIM_W                                      $16     !1, '%E9%83%A8%E5%B1%8B%E7%95%AA%E5%8F%B7'
         14        ASSIGN_DIM                                               $16
         15        OP_DATA                                                  '0105'
   11    16        FETCH_DIM_W                                      $18     !1, '%E9%83%A8%E5%B1%8B%E7%95%AA%E5%8F%B7'
         17        ASSIGN_DIM                                               $18
         18        OP_DATA                                                  '0401'
   21    19        FETCH_DIM_W                                      $20     !1, '0101'
         20        FETCH_DIM_W                                      $21     $20, '%E5%B7%A5%E4%BA%8B%E3%82%B3%E3%83%BC%E3%83%89_%E6%9E%9D%E7%95%AA'
         21        ASSIGN_DIM                                               $21
         22        OP_DATA                                                  '0123456_01'
   23    23        FETCH_DIM_W                                      $23     !1, '0101'
         24        FETCH_DIM_W                                      $24     $23, '0123456_01'
         25        FETCH_DIM_W                                      $25     $24, '%E6%98%8E%E7%B4%B0%E3%83%95%E3%82%A3%E3%83%BC%E3%83%AB%E3%83%89'
         26        ASSIGN_DIM                                               $25
         27        OP_DATA                                                  <array>
   25    28        FETCH_DIM_W                                      $27     !1, '0101'
         29        FETCH_DIM_W                                      $28     $27, '%E2%97%8F'
         30        ASSIGN_DIM                                               $28, '%E3%82%AD%E3%83%83%E3%83%81%E3%83%B3'
         31        OP_DATA                                                  '%E2%97%8F'
   27    32        FETCH_DIM_W                                      $30     !1, '0101'
         33        FETCH_DIM_W                                      $31     $30, '%E2%97%8F'
         34        ASSIGN_DIM                                               $31
         35        OP_DATA                                                  '%E3%82%AD%E3%83%83%E3%83%81%E3%83%B3'
   29    36        FETCH_DIM_W                                      $33     !1, '0101'
         37        FETCH_DIM_W                                      $34     $33, '0123456_01'
         38        FETCH_DIM_W                                      $35     $34, '%E9%A0%85%E7%9B%AE%E5%90%8D'
         39        ASSIGN_DIM                                               $35
         40        OP_DATA                                                  '%E3%82%AD%E3%83%83%E3%83%81%E3%83%B3'
   31    41        FETCH_DIM_W                                      $37     !1, '0101'
         42        FETCH_DIM_W                                      $38     $37, '0123456_01'
         43        FETCH_DIM_W                                      $39     $38, '%E6%98%8E%E7%B4%B0%E3%83%95%E3%82%A3%E3%83%BC%E3%83%AB%E3%83%89'
         44        ASSIGN_DIM                                               $39
         45        OP_DATA                                                  <array>
   33    46        FETCH_DIM_W                                      $41     !1, '0101'
         47        FETCH_DIM_W                                      $42     $41, '%E2%97%8F'
         48        ASSIGN_DIM                                               $42
         49        OP_DATA                                                  '%E6%B5%B4%E5%AE%A4'
   34    50        FETCH_DIM_W                                      $44     !1, '0101'
         51        FETCH_DIM_W                                      $45     $44, '0123456_01'
         52        FETCH_DIM_W                                      $46     $45, '%E9%A0%85%E7%9B%AE%E5%90%8D'
         53        ASSIGN_DIM                                               $46
         54        OP_DATA                                                  '%E6%B5%B4%E5%AE%A4'
   35    55        FETCH_DIM_W                                      $48     !1, '0101'
         56        FETCH_DIM_W                                      $49     $48, '0123456_01'
         57        FETCH_DIM_W                                      $50     $49, '%E6%98%8E%E7%B4%B0%E3%83%95%E3%82%A3%E3%83%BC%E3%83%AB%E3%83%89'
         58        ASSIGN_DIM                                               $50
         59        OP_DATA                                                  <array>
   36    60        FETCH_DIM_W                                      $52     !1, '0101'
         61        FETCH_DIM_W                                      $53     $52, '0123456_01'
         62        FETCH_DIM_W                                      $54     $53, '%E6%98%8E%E7%B4%B0%E3%83%95%E3%82%A3%E3%83%BC%E3%83%AB%E3%83%89'
         63        ASSIGN_DIM                                               $54
         64        OP_DATA                                                  <array>
   39    65        FETCH_DIM_W                                      $56     !1, '0101'
         66        FETCH_DIM_W                                      $57     $56, '%E5%B7%A5%E4%BA%8B%E3%82%B3%E3%83%BC%E3%83%89_%E6%9E%9D%E7%95%AA'
         67        ASSIGN_DIM                                               $57
         68        OP_DATA                                                  '0123456_02'
   40    69        FETCH_DIM_W                                      $59     !1, '0101'
         70        FETCH_DIM_W                                      $60     $59, '0123456_02'
         71        FETCH_DIM_W                                      $61     $60, '%E6%98%8E%E7%B4%B0%E3%83%95%E3%82%A3%E3%83%BC%E3%83%AB%E3%83%89'
         72        ASSIGN_DIM                                               $61
         73        OP_DATA                                                  <array>
   42    74        FETCH_DIM_W                                      $63     !1, '0101'
         75        FETCH_DIM_W                                      $64     $63, '%E2%97%8F'
         76        ASSIGN_DIM                                               $64
         77        OP_DATA                                                  '%E3%83%88%E3%82%A4%E3%83%AC'
   43    78        FETCH_DIM_W                                      $66     !1, '0101'
         79        FETCH_DIM_W                                      $67     $66, '0123456_02'
         80        FETCH_DIM_W                                      $68     $67, '%E9%A0%85%E7%9B%AE%E5%90%8D'
         81        ASSIGN_DIM                                               $68
         82        OP_DATA                                                  '%E3%83%88%E3%82%A4%E3%83%AC'
   46    83        FETCH_DIM_W                                      $70     !1, '0401'
         84        FETCH_DIM_W                                      $71     $70, '%E5%B7%A5%E4%BA%8B%E3%82%B3%E3%83%BC%E3%83%89_%E6%9E%9D%E7%95%AA'
         85        ASSIGN_DIM                                               $71
         86        OP_DATA                                                  '9999999_00'
   47    87        FETCH_DIM_W                                      $73     !1, '0401'
         88        FETCH_DIM_W                                      $74     $73, '9999999_00'
         89        FETCH_DIM_W                                      $75     $74, '%E6%98%8E%E7%B4%B0%E3%83%95%E3%82%A3%E3%83%BC%E3%83%AB%E3%83%89'
         90        ASSIGN_DIM                                               $75
         91        OP_DATA                                                  <array>
   49    92        FETCH_DIM_W                                      $77     !1, '0401'
         93        FETCH_DIM_W                                      $78     $77, '%E2%97%8F'
         94        ASSIGN_DIM                                               $78
         95        OP_DATA                                                  '%E7%95%B3'
   50    96        FETCH_DIM_W                                      $80     !1, '0401'
         97        FETCH_DIM_W                                      $81     $80, '9999999_00'
         98        FETCH_DIM_W                                      $82     $81, '%E9%A0%85%E7%9B%AE%E5%90%8D'
         99        ASSIGN_DIM                                               $82
        100        OP_DATA                                                  '%E7%95%B3'
   54   101        FETCH_DIM_R                                      ~84     !1, '%E9%83%A8%E5%B1%8B%E7%95%AA%E5%8F%B7'
        102      > FE_RESET_R                                       $85     ~84, ->191
        103    > > FE_FETCH_R                                               $85, !2, ->191
   55   104    >   CONCAT                                           ~86     '%E9%83%A8%E5%B1%8B%E7%95%AA%E5%8F%B7%3A+', !2
        105        CONCAT                                           ~87     ~86, '%0A'
        106        ECHO                                                     ~87
   67   107        ARRAY_KEY_EXISTS                                         !2, !1
        108      > JMPZ                                                     ~88, ->187
   73   109    >   ASSIGN                                                   !3, <array>
   75   110        FETCH_DIM_R                                      ~90     !1, !2
        111        FETCH_DIM_R                                      ~91     ~90, '%E2%97%8F'
        112      > FE_RESET_R                                       $92     ~91, ->123
        113    > > FE_FETCH_R                                               $92, !4, ->123
   76   114    >   ASSIGN_DIM                                               !3
        115        OP_DATA                                                  !4
   79   116        FETCH_DIM_R                                      ~94     !1, !2
        117        FETCH_DIM_R                                      ~95     ~94, '%E2%97%8F'
        118        FETCH_DIM_R                                      ~96     ~95, '%E3%82%AD%E3%83%83%E3%83%81%E3%83%B3'
        119        ARRAY_KEY_EXISTS                                         !4, ~96
        120      > JMPZ                                                     ~97, ->122
   80   121    >   ECHO                                                     '%E3%82%AD%E3%83%83%E3%83%81%E3%83%B3%E3%81%82%E3%81%A3%E3%81%9F%E3%83%BC%EF%BC%81%EF%BC%81%EF%BC%81%2Fn'
   75   122    > > JMP                                                      ->113
        123    >   FE_FREE                                                  $92
   84   124        ECHO                                                     '--------------------------------------------------%0A'
   85   125        ECHO                                                     '%E8%A9%B2%E5%BD%93%E5%95%86%E5%93%81%E5%90%8D%0A'
   86   126        INIT_FCALL                                               'implode'
        127        SEND_VAL                                                 '%2C'
        128        SEND_VAR                                                 !3
        129        DO_ICALL                                         $98     
        130        CONCAT                                           ~99     '%E3%80%80', $98
        131        CONCAT                                           ~100    ~99, '%0A'
        132        ECHO                                                     ~100
   87   133        ECHO                                                     '--------------------------------------------------%0A'
   90   134        FETCH_DIM_R                                      ~101    !1, !2
        135        FETCH_DIM_R                                      ~102    ~101, '%E5%B7%A5%E4%BA%8B%E3%82%B3%E3%83%BC%E3%83%89_%E6%9E%9D%E7%95%AA'
        136      > FE_RESET_R                                       $103    ~102, ->185
        137    > > FE_FETCH_R                                               $103, !4, ->185
   91   138    >   ECHO                                                     '%E5%B7%A5%E4%BA%8B%E3%82%B3%E3%83%BC%E3%83%89_%E6%9E%9D%E7%95%AA%0A'
   92   139        CONCAT                                           ~104    '%E3%80%80', !4
        140        CONCAT                                           ~105    ~104, '%0A'
        141        ECHO                                                     ~105
   94   142        FETCH_DIM_R                                      ~106    !1, !2
        143        ARRAY_KEY_EXISTS                                         !4, ~106
        144      > JMPZ                                                     ~107, ->181
   96   145    >   ASSIGN                                                   !5, <array>
   97   146        FETCH_DIM_R                                      ~109    !1, !2
        147        FETCH_DIM_R                                      ~110    ~109, !4
        148        FETCH_DIM_R                                      ~111    ~110, '%E9%A0%85%E7%9B%AE%E5%90%8D'
        149      > FE_RESET_R                                       $112    ~111, ->154
        150    > > FE_FETCH_R                                               $112, !6, ->154
   98   151    >   ASSIGN_DIM                                               !5
        152        OP_DATA                                                  !6
   97   153      > JMP                                                      ->150
        154    >   FE_FREE                                                  $112
  100   155        ECHO                                                     '%E3%83%92%E3%83%83%E3%83%88%E3%81%97%E3%81%9F%E9%A0%85%E7%9B%AE%E5%90%8D%0A'
  101   156        INIT_FCALL                                               'implode'
        157        SEND_VAL                                                 '%2C'
        158        SEND_VAR                                                 !5
        159        DO_ICALL                                         $114    
        160        CONCAT                                           ~115    '%E3%80%80', $114
        161        CONCAT                                           ~116    ~115, '%0A'
        162        ECHO                                                     ~116
  102   163        ECHO                                                     '%E6%98%8E%E7%B4%B0%0A'
  103   164        ECHO                                                     '%E2%94%8F%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%93%0A'
  106   165        FETCH_DIM_R                                      ~117    !1, !2
        166        FETCH_DIM_R                                      ~118    ~117, !4
        167        FETCH_DIM_R                                      ~119    ~118, '%E6%98%8E%E7%B4%B0%E3%83%95%E3%82%A3%E3%83%BC%E3%83%AB%E3%83%89'
        168      > FE_RESET_R                                       $120    ~119, ->178
        169    > > FE_FETCH_R                                               $120, !6, ->178
  107   170    >   FETCH_DIM_R                                      ~121    !6, 0
        171        CONCAT                                           ~122    '%E2%94%83', ~121
        172        CONCAT                                           ~123    ~122, '+%7C+'
        173        FETCH_DIM_R                                      ~124    !6, 1
        174        CONCAT                                           ~125    ~123, ~124
        175        CONCAT                                           ~126    ~125, '%0A'
        176        ECHO                                                     ~126
  106   177      > JMP                                                      ->169
        178    >   FE_FREE                                                  $120
  120   179        ECHO                                                     '%E2%94%97%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%9B%0A'
        180      > JMP                                                      ->184
  122   181    >   CONCAT                                           ~127    !4, '%E3%81%AB%E3%81%AF%E9%A0%85%E7%9B%AE%E5%90%8D%E3%81%8C%E3%81%AA%E3%81%84%E3%82%88'
        182        CONCAT                                           ~128    ~127, '%0A'
        183        ECHO                                                     ~128
   90   184    > > JMP                                                      ->137
        185    >   FE_FREE                                                  $103
        186      > JMP                                                      ->190
  137   187    >   ECHO                                                     '%E2%94%8F%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%93%0A'
  138   188        ECHO                                                     '%E2%94%83%E3%80%80%E3%80%80%E3%80%80%E3%80%80%E3%80%80%E3%80%80%E3%80%80%E8%A9%B2%E5%BD%93%E6%98%8E%E7%B4%B0%E3%81%AF%E3%81%82%E3%82%8A%E3%81%BE%E3%81%9B%E3%82%93%E3%81%A7%E3%81%97%E3%81%9F%E3%80%82%E3%80%80%E3%80%80%E3%80%80%E3%80%80%E3%80%80%E3%80%80%E3%80%80%E2%94%83%0A'
  139   189        ECHO                                                     '%E2%94%97%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%81%E2%94%9B%0A'
   54   190    > > JMP                                                      ->103
        191    >   FE_FREE                                                  $85
  145   192      > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
166 ms | 1416 KiB | 15 Q