3v4l.org

run code in 300+ PHP versions simultaneously
<?php $LatLngList = ""; $markers = ""; $contact_informatie = ""; $contacts["berlaar"]["x"] = "51.08475"; $contacts["berlaar"]["y"] = "4.65756"; $contacts["berlaar"]["straat"] = "Aarschotsebaan 140"; $contacts["berlaar"]["gemeente"] = "2590 Berlaar"; $contacts["berlaar"]["tel"] = "015 75 51 00"; $contacts["berlaar"]["tekst"] = "Openingsuren: Zomerperiode 1/3 tot 15/10"; $contacts["berlaar"]["openingsuren"]["ma"] = "10-17u"; $contacts["berlaar"]["openingsuren"]["di"] = "sluitingsdag"; $contacts["berlaar"]["openingsuren"]["woe"] = "13-18u"; $contacts["berlaar"]["openingsuren"]["do"] = "10-17u"; $contacts["berlaar"]["openingsuren"]["vrij"] = "10-17u"; $contacts["berlaar"]["openingsuren"]["zat"] = "10-16u"; $contacts["genk"]["x"] = "50.97269"; $contacts["genk"]["y"] = "5.51706"; $contacts["genk"]["straat"] = "Weg naar As 168"; $contacts["genk"]["gemeente"] = "3600 Genk"; $contacts["genk"]["tel"] = "089 35 68 30"; $contacts["genk"]["tekst"] = "Openingsuren: Zomerperiode 1/3 tot 15/10"; $contacts["genk"]["openingsuren"]["ma"] = "sluitingsdag"; $contacts["genk"]["openingsuren"]["di"] = "10-18u"; $contacts["genk"]["openingsuren"]["woe"] = "13-18u"; $contacts["genk"]["openingsuren"]["do"] = "13-18u"; $contacts["genk"]["openingsuren"]["vrij"] = "10-18u"; $contacts["genk"]["openingsuren"]["zat"] = "10-16u"; $contacts["weelde"]["x"] = "51.41312"; $contacts["weelde"]["y"] = "5.01571"; $contacts["weelde"]["straat"] = "Weeldestraat 102"; $contacts["weelde"]["gemeente"] = "2381 Weelde"; $contacts["weelde"]["tel"] = "014 65 95 45"; $contacts["weelde"]["tekst"] = "Openingsuren: Zomerperiode 1/3 tot 15/10"; $contacts["weelde"]["openingsuren"]["ma"] = "10-17u"; $contacts["weelde"]["openingsuren"]["di"] = "sluitingsdag"; $contacts["weelde"]["openingsuren"]["woe"] = "13-18u"; $contacts["weelde"]["openingsuren"]["do"] = "10-17u"; $contacts["weelde"]["openingsuren"]["vrij"] = "10-17u"; $contacts["weelde"]["openingsuren"]["zat"] = "10-16u"; $contacts["kessel"]["x"] = "51.28544"; $contacts["kessel"]["y"] = "6.03627"; $contacts["kessel"]["straat"] = "Karreweg Noord 18"; $contacts["kessel"]["gemeente"] = "5995 ME Kessel"; $contacts["kessel"]["tel"] = "077 4622952"; $contacts["kessel"]["tekst"] = "Openingsuren: Zomerperiode 1/3 tot 15/10"; $contacts["kessel"]["openingsuren"]["ma"] = "08-17u"; $contacts["kessel"]["openingsuren"]["di"] = "08-17u"; $contacts["kessel"]["openingsuren"]["woe"] = "08-17u"; $contacts["kessel"]["openingsuren"]["do"] = "08-17u"; $contacts["kessel"]["openingsuren"]["vrij"] = "08-17u"; $contacts["kessel"]["openingsuren"]["zat"] = "09-15u"; //maken van arraylist voor de bounds $teller = 1; foreach ($contacts as $key => $value) { if ($teller != 1) { $LatLngList .= ", "; } $LatLngList .= "new google.maps.LatLng (" . $contacts[$key]["x"] . ", " . $contacts[$key]["y"] . ")"; $markers .= " var image" . $teller . " = ''; var myLatLng" . $teller . " = new google.maps.LatLng(" . $contacts[$key]["x"] . ", " . $contacts[$key]["y"] . "); var marker" . $teller . " = new google.maps.Marker({ position: myLatLng" . $teller . ", map: map, icon: '../images/contact/contact_icoon_kaart.png' });"; $teller++; $contact_informatie .= "<div class='contact_punt'>"; $contact_informatie .= "<h2 class='medium_orange'>" . strtoupper($key) . "</h2>"; $contact_informatie .= "<p class='contact_contactgegevens'>" . $contacts[$key]["straat"] . "</p>"; $contact_informatie .= "<p class='contact_contactgegevens'>" . $contacts[$key]["gemeente"] . "</p>"; $contact_informatie .= "<p class='contact_contactgegevens'>" . $contacts[$key]["tel"] . "</p>"; $contact_informatie .= "<p class='contact_contactgegevens'>" . $contacts[$key]["tekst"] . "</p>"; $contact_informatie .= "<p class='contact_openingsuren'>ma " . $contacts[$key]["openingsuren"]["ma"] . "</p>"; $contact_informatie .= "<p class='contact_openingsuren'>di " . $contacts[$key]["openingsuren"]["di"] . "</p>"; $contact_informatie .= "<p class='contact_openingsuren'>woe " . $contacts[$key]["openingsuren"]["woe"] . "</p>"; $contact_informatie .= "<p class='contact_openingsuren'>do " . $contacts[$key]["openingsuren"]["do"] . "</p>"; $contact_informatie .= "<p class='contact_openingsuren'>vrij " . $contacts[$key]["openingsuren"]["vrij"] . "</p>"; $contact_informatie .= "<p class='contact_openingsuren'>zat " . $contacts[$key]["openingsuren"]["zat"] . "</p>"; $contact_informatie .= "</div>"; } ?>
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 77) Position 1 = 173, Position 2 = 270
Branch analysis from position: 173
2 jumps found. (Code = 78) Position 1 = 174, Position 2 = 270
Branch analysis from position: 174
2 jumps found. (Code = 43) Position 1 = 177, Position 2 = 178
Branch analysis from position: 177
1 jumps found. (Code = 42) Position 1 = 173
Branch analysis from position: 173
Branch analysis from position: 178
Branch analysis from position: 270
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 270
filename:       /in/GKaO3
function name:  (null)
number of ops:  272
compiled vars:  !0 = $LatLngList, !1 = $markers, !2 = $contact_informatie, !3 = $contacts, !4 = $teller, !5 = $value, !6 = $key
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    2     0  E >   ASSIGN                                                   !0, ''
    3     1        ASSIGN                                                   !1, ''
    5     2        ASSIGN                                                   !2, ''
    7     3        FETCH_DIM_W                                      $10     !3, 'berlaar'
          4        ASSIGN_DIM                                               $10, 'x'
          5        OP_DATA                                                  '51.08475'
    8     6        FETCH_DIM_W                                      $12     !3, 'berlaar'
          7        ASSIGN_DIM                                               $12, 'y'
          8        OP_DATA                                                  '4.65756'
    9     9        FETCH_DIM_W                                      $14     !3, 'berlaar'
         10        ASSIGN_DIM                                               $14, 'straat'
         11        OP_DATA                                                  'Aarschotsebaan+140'
   10    12        FETCH_DIM_W                                      $16     !3, 'berlaar'
         13        ASSIGN_DIM                                               $16, 'gemeente'
         14        OP_DATA                                                  '2590+Berlaar'
   11    15        FETCH_DIM_W                                      $18     !3, 'berlaar'
         16        ASSIGN_DIM                                               $18, 'tel'
         17        OP_DATA                                                  '015+75+51+00'
   12    18        FETCH_DIM_W                                      $20     !3, 'berlaar'
         19        ASSIGN_DIM                                               $20, 'tekst'
         20        OP_DATA                                                  'Openingsuren%3A+Zomerperiode+1%2F3+tot+15%2F10'
   13    21        FETCH_DIM_W                                      $22     !3, 'berlaar'
         22        FETCH_DIM_W                                      $23     $22, 'openingsuren'
         23        ASSIGN_DIM                                               $23, 'ma'
         24        OP_DATA                                                  '10-17u'
   14    25        FETCH_DIM_W                                      $25     !3, 'berlaar'
         26        FETCH_DIM_W                                      $26     $25, 'openingsuren'
         27        ASSIGN_DIM                                               $26, 'di'
         28        OP_DATA                                                  'sluitingsdag'
   15    29        FETCH_DIM_W                                      $28     !3, 'berlaar'
         30        FETCH_DIM_W                                      $29     $28, 'openingsuren'
         31        ASSIGN_DIM                                               $29, 'woe'
         32        OP_DATA                                                  '13-18u'
   16    33        FETCH_DIM_W                                      $31     !3, 'berlaar'
         34        FETCH_DIM_W                                      $32     $31, 'openingsuren'
         35        ASSIGN_DIM                                               $32, 'do'
         36        OP_DATA                                                  '10-17u'
   17    37        FETCH_DIM_W                                      $34     !3, 'berlaar'
         38        FETCH_DIM_W                                      $35     $34, 'openingsuren'
         39        ASSIGN_DIM                                               $35, 'vrij'
         40        OP_DATA                                                  '10-17u'
   18    41        FETCH_DIM_W                                      $37     !3, 'berlaar'
         42        FETCH_DIM_W                                      $38     $37, 'openingsuren'
         43        ASSIGN_DIM                                               $38, 'zat'
         44        OP_DATA                                                  '10-16u'
   21    45        FETCH_DIM_W                                      $40     !3, 'genk'
         46        ASSIGN_DIM                                               $40, 'x'
         47        OP_DATA                                                  '50.97269'
   22    48        FETCH_DIM_W                                      $42     !3, 'genk'
         49        ASSIGN_DIM                                               $42, 'y'
         50        OP_DATA                                                  '5.51706'
   23    51        FETCH_DIM_W                                      $44     !3, 'genk'
         52        ASSIGN_DIM                                               $44, 'straat'
         53        OP_DATA                                                  'Weg+naar+As+168'
   24    54        FETCH_DIM_W                                      $46     !3, 'genk'
         55        ASSIGN_DIM                                               $46, 'gemeente'
         56        OP_DATA                                                  '3600+Genk'
   25    57        FETCH_DIM_W                                      $48     !3, 'genk'
         58        ASSIGN_DIM                                               $48, 'tel'
         59        OP_DATA                                                  '089+35+68+30'
   26    60        FETCH_DIM_W                                      $50     !3, 'genk'
         61        ASSIGN_DIM                                               $50, 'tekst'
         62        OP_DATA                                                  'Openingsuren%3A+Zomerperiode+1%2F3+tot+15%2F10'
   27    63        FETCH_DIM_W                                      $52     !3, 'genk'
         64        FETCH_DIM_W                                      $53     $52, 'openingsuren'
         65        ASSIGN_DIM                                               $53, 'ma'
         66        OP_DATA                                                  'sluitingsdag'
   28    67        FETCH_DIM_W                                      $55     !3, 'genk'
         68        FETCH_DIM_W                                      $56     $55, 'openingsuren'
         69        ASSIGN_DIM                                               $56, 'di'
         70        OP_DATA                                                  '10-18u'
   29    71        FETCH_DIM_W                                      $58     !3, 'genk'
         72        FETCH_DIM_W                                      $59     $58, 'openingsuren'
         73        ASSIGN_DIM                                               $59, 'woe'
         74        OP_DATA                                                  '13-18u'
   30    75        FETCH_DIM_W                                      $61     !3, 'genk'
         76        FETCH_DIM_W                                      $62     $61, 'openingsuren'
         77        ASSIGN_DIM                                               $62, 'do'
         78        OP_DATA                                                  '13-18u'
   31    79        FETCH_DIM_W                                      $64     !3, 'genk'
         80        FETCH_DIM_W                                      $65     $64, 'openingsuren'
         81        ASSIGN_DIM                                               $65, 'vrij'
         82        OP_DATA                                                  '10-18u'
   32    83        FETCH_DIM_W                                      $67     !3, 'genk'
         84        FETCH_DIM_W                                      $68     $67, 'openingsuren'
         85        ASSIGN_DIM                                               $68, 'zat'
         86        OP_DATA                                                  '10-16u'
   34    87        FETCH_DIM_W                                      $70     !3, 'weelde'
         88        ASSIGN_DIM                                               $70, 'x'
         89        OP_DATA                                                  '51.41312'
   35    90        FETCH_DIM_W                                      $72     !3, 'weelde'
         91        ASSIGN_DIM                                               $72, 'y'
         92        OP_DATA                                                  '5.01571'
   36    93        FETCH_DIM_W                                      $74     !3, 'weelde'
         94        ASSIGN_DIM                                               $74, 'straat'
         95        OP_DATA                                                  'Weeldestraat+102'
   37    96        FETCH_DIM_W                                      $76     !3, 'weelde'
         97        ASSIGN_DIM                                               $76, 'gemeente'
         98        OP_DATA                                                  '2381+Weelde'
   38    99        FETCH_DIM_W                                      $78     !3, 'weelde'
        100        ASSIGN_DIM                                               $78, 'tel'
        101        OP_DATA                                                  '014+65+95+45'
   39   102        FETCH_DIM_W                                      $80     !3, 'weelde'
        103        ASSIGN_DIM                                               $80, 'tekst'
        104        OP_DATA                                                  'Openingsuren%3A+Zomerperiode+1%2F3+tot+15%2F10'
   40   105        FETCH_DIM_W                                      $82     !3, 'weelde'
        106        FETCH_DIM_W                                      $83     $82, 'openingsuren'
        107        ASSIGN_DIM                                               $83, 'ma'
        108        OP_DATA                                                  '10-17u'
   41   109        FETCH_DIM_W                                      $85     !3, 'weelde'
        110        FETCH_DIM_W                                      $86     $85, 'openingsuren'
        111        ASSIGN_DIM                                               $86, 'di'
        112        OP_DATA                                                  'sluitingsdag'
   42   113        FETCH_DIM_W                                      $88     !3, 'weelde'
        114        FETCH_DIM_W                                      $89     $88, 'openingsuren'
        115        ASSIGN_DIM                                               $89, 'woe'
        116        OP_DATA                                                  '13-18u'
   43   117        FETCH_DIM_W                                      $91     !3, 'weelde'
        118        FETCH_DIM_W                                      $92     $91, 'openingsuren'
        119        ASSIGN_DIM                                               $92, 'do'
        120        OP_DATA                                                  '10-17u'
   44   121        FETCH_DIM_W                                      $94     !3, 'weelde'
        122        FETCH_DIM_W                                      $95     $94, 'openingsuren'
        123        ASSIGN_DIM                                               $95, 'vrij'
        124        OP_DATA                                                  '10-17u'
   45   125        FETCH_DIM_W                                      $97     !3, 'weelde'
        126        FETCH_DIM_W                                      $98     $97, 'openingsuren'
        127        ASSIGN_DIM                                               $98, 'zat'
        128        OP_DATA                                                  '10-16u'
   47   129        FETCH_DIM_W                                      $100    !3, 'kessel'
        130        ASSIGN_DIM                                               $100, 'x'
        131        OP_DATA                                                  '51.28544'
   48   132        FETCH_DIM_W                                      $102    !3, 'kessel'
        133        ASSIGN_DIM                                               $102, 'y'
        134        OP_DATA                                                  '6.03627'
   49   135        FETCH_DIM_W                                      $104    !3, 'kessel'
        136        ASSIGN_DIM                                               $104, 'straat'
        137        OP_DATA                                                  'Karreweg+Noord+18'
   50   138        FETCH_DIM_W                                      $106    !3, 'kessel'
        139        ASSIGN_DIM                                               $106, 'gemeente'
        140        OP_DATA                                                  '5995+ME+Kessel'
   51   141        FETCH_DIM_W                                      $108    !3, 'kessel'
        142        ASSIGN_DIM                                               $108, 'tel'
        143        OP_DATA                                                  '077+4622952'
   52   144        FETCH_DIM_W                                      $110    !3, 'kessel'
        145        ASSIGN_DIM                                               $110, 'tekst'
        146        OP_DATA                                                  'Openingsuren%3A+Zomerperiode+1%2F3+tot+15%2F10'
   53   147        FETCH_DIM_W                                      $112    !3, 'kessel'
        148        FETCH_DIM_W                                      $113    $112, 'openingsuren'
        149        ASSIGN_DIM                                               $113, 'ma'
        150        OP_DATA                                                  '08-17u'
   54   151        FETCH_DIM_W                                      $115    !3, 'kessel'
        152        FETCH_DIM_W                                      $116    $115, 'openingsuren'
        153        ASSIGN_DIM                                               $116, 'di'
        154        OP_DATA                                                  '08-17u'
   55   155        FETCH_DIM_W                                      $118    !3, 'kessel'
        156        FETCH_DIM_W                                      $119    $118, 'openingsuren'
        157        ASSIGN_DIM                                               $119, 'woe'
        158        OP_DATA                                                  '08-17u'
   56   159        FETCH_DIM_W                                      $121    !3, 'kessel'
        160        FETCH_DIM_W                                      $122    $121, 'openingsuren'
        161        ASSIGN_DIM                                               $122, 'do'
        162        OP_DATA                                                  '08-17u'
   57   163        FETCH_DIM_W                                      $124    !3, 'kessel'
        164        FETCH_DIM_W                                      $125    $124, 'openingsuren'
        165        ASSIGN_DIM                                               $125, 'vrij'
        166        OP_DATA                                                  '08-17u'
   58   167        FETCH_DIM_W                                      $127    !3, 'kessel'
        168        FETCH_DIM_W                                      $128    $127, 'openingsuren'
        169        ASSIGN_DIM                                               $128, 'zat'
        170        OP_DATA                                                  '09-15u'
   61   171        ASSIGN                                                   !4, 1
   62   172      > FE_RESET_R                                       $131    !3, ->270
        173    > > FE_FETCH_R                                       ~132    $131, !5, ->270
        174    >   ASSIGN                                                   !6, ~132
   63   175        IS_NOT_EQUAL                                             !4, 1
        176      > JMPZ                                                     ~134, ->178
   64   177    >   ASSIGN_OP                                     8          !0, '%2C+'
   66   178    >   FETCH_DIM_R                                      ~136    !3, !6
        179        FETCH_DIM_R                                      ~137    ~136, 'x'
        180        CONCAT                                           ~138    'new+google.maps.LatLng+%28', ~137
        181        CONCAT                                           ~139    ~138, '%2C+'
        182        FETCH_DIM_R                                      ~140    !3, !6
        183        FETCH_DIM_R                                      ~141    ~140, 'y'
        184        CONCAT                                           ~142    ~139, ~141
        185        CONCAT                                           ~143    ~142, '%29'
        186        ASSIGN_OP                                     8          !0, ~143
   69   187        CONCAT                                           ~145    '+++++++%0A++++++++var+image', !4
        188        CONCAT                                           ~146    ~145, '++%3D+%27%27%3B%0A++++++++var+myLatLng'
   70   189        CONCAT                                           ~147    ~146, !4
        190        CONCAT                                           ~148    ~147, '++%3D+new+google.maps.LatLng%28'
        191        FETCH_DIM_R                                      ~149    !3, !6
        192        FETCH_DIM_R                                      ~150    ~149, 'x'
        193        CONCAT                                           ~151    ~148, ~150
        194        CONCAT                                           ~152    ~151, '%2C+'
        195        FETCH_DIM_R                                      ~153    !3, !6
        196        FETCH_DIM_R                                      ~154    ~153, 'y'
        197        CONCAT                                           ~155    ~152, ~154
        198        CONCAT                                           ~156    ~155, '%29%3B++++++++%0A++++++++var+marker'
   71   199        CONCAT                                           ~157    ~156, !4
        200        CONCAT                                           ~158    ~157, '++%3D+new+google.maps.Marker%28%7B%0A++++++++++++position%3A+myLatLng'
   72   201        CONCAT                                           ~159    ~158, !4
        202        CONCAT                                           ~160    ~159, '%2C%0A++++++++++++map%3A+map%2C%0A++++++++++++icon%3A+%27..%2Fimages%2Fcontact%2Fcontact_icoon_kaart.png%27%0A++++++++%7D%29%3B'
        203        ASSIGN_OP                                     8          !1, ~160
   77   204        PRE_INC                                                  !4
   80   205        ASSIGN_OP                                     8          !2, '%3Cdiv+class%3D%27contact_punt%27%3E'
   81   206        INIT_FCALL                                               'strtoupper'
        207        SEND_VAR                                                 !6
        208        DO_ICALL                                         $164    
        209        CONCAT                                           ~165    '%3Ch2+class%3D%27medium_orange%27%3E', $164
        210        CONCAT                                           ~166    ~165, '%3C%2Fh2%3E'
        211        ASSIGN_OP                                     8          !2, ~166
   82   212        FETCH_DIM_R                                      ~168    !3, !6
        213        FETCH_DIM_R                                      ~169    ~168, 'straat'
        214        CONCAT                                           ~170    '%3Cp+class%3D%27contact_contactgegevens%27%3E', ~169
        215        CONCAT                                           ~171    ~170, '%3C%2Fp%3E'
        216        ASSIGN_OP                                     8          !2, ~171
   83   217        FETCH_DIM_R                                      ~173    !3, !6
        218        FETCH_DIM_R                                      ~174    ~173, 'gemeente'
        219        CONCAT                                           ~175    '%3Cp+class%3D%27contact_contactgegevens%27%3E', ~174
        220        CONCAT                                           ~176    ~175, '%3C%2Fp%3E'
        221        ASSIGN_OP                                     8          !2, ~176
   84   222        FETCH_DIM_R                                      ~178    !3, !6
        223        FETCH_DIM_R                                      ~179    ~178, 'tel'
        224        CONCAT                                           ~180    '%3Cp+class%3D%27contact_contactgegevens%27%3E', ~179
        225        CONCAT                                           ~181    ~180, '%3C%2Fp%3E'
        226        ASSIGN_OP                                     8          !2, ~181
   85   227        FETCH_DIM_R                                      ~183    !3, !6
        228        FETCH_DIM_R                                      ~184    ~183, 'tekst'
        229        CONCAT                                           ~185    '%3Cp+class%3D%27contact_contactgegevens%27%3E', ~184
        230        CONCAT                                           ~186    ~185, '%3C%2Fp%3E'
        231        ASSIGN_OP                                     8          !2, ~186
   86   232        FETCH_DIM_R                                      ~188    !3, !6
        233        FETCH_DIM_R                                      ~189    ~188, 'openingsuren'
        234        FETCH_DIM_R                                      ~190    ~189, 'ma'
        235        CONCAT                                           ~191    '%3Cp+class%3D%27contact_openingsuren%27%3Ema+', ~190
        236        CONCAT                                           ~192    ~191, '%3C%2Fp%3E'
        237        ASSIGN_OP                                     8          !2, ~192
   87   238        FETCH_DIM_R                                      ~194    !3, !6
        239        FETCH_DIM_R                                      ~195    ~194, 'openingsuren'
        240        FETCH_DIM_R                                      ~196    ~195, 'di'
        241        CONCAT                                           ~197    '%3Cp+class%3D%27contact_openingsuren%27%3Edi+', ~196
        242        CONCAT                                           ~198    ~197, '%3C%2Fp%3E'
        243        ASSIGN_OP                                     8          !2, ~198
   88   244        FETCH_DIM_R                                      ~200    !3, !6
        245        FETCH_DIM_R                                      ~201    ~200, 'openingsuren'
        246        FETCH_DIM_R                                      ~202    ~201, 'woe'
        247        CONCAT                                           ~203    '%3Cp+class%3D%27contact_openingsuren%27%3Ewoe+', ~202
        248        CONCAT                                           ~204    ~203, '%3C%2Fp%3E'
        249        ASSIGN_OP                                     8          !2, ~204
   89   250        FETCH_DIM_R                                      ~206    !3, !6
        251        FETCH_DIM_R                                      ~207    ~206, 'openingsuren'
        252        FETCH_DIM_R                                      ~208    ~207, 'do'
        253        CONCAT                                           ~209    '%3Cp+class%3D%27contact_openingsuren%27%3Edo+', ~208
        254        CONCAT                                           ~210    ~209, '%3C%2Fp%3E'
        255        ASSIGN_OP                                     8          !2, ~210
   90   256        FETCH_DIM_R                                      ~212    !3, !6
        257        FETCH_DIM_R                                      ~213    ~212, 'openingsuren'
        258        FETCH_DIM_R                                      ~214    ~213, 'vrij'
        259        CONCAT                                           ~215    '%3Cp+class%3D%27contact_openingsuren%27%3Evrij+', ~214
        260        CONCAT                                           ~216    ~215, '%3C%2Fp%3E'
        261        ASSIGN_OP                                     8          !2, ~216
   91   262        FETCH_DIM_R                                      ~218    !3, !6
        263        FETCH_DIM_R                                      ~219    ~218, 'openingsuren'
        264        FETCH_DIM_R                                      ~220    ~219, 'zat'
        265        CONCAT                                           ~221    '%3Cp+class%3D%27contact_openingsuren%27%3Ezat+', ~220
        266        CONCAT                                           ~222    ~221, '%3C%2Fp%3E'
        267        ASSIGN_OP                                     8          !2, ~222
   92   268        ASSIGN_OP                                     8          !2, '%3C%2Fdiv%3E'
   62   269      > JMP                                                      ->173
        270    >   FE_FREE                                                  $131
   94   271      > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
158.48 ms | 968 KiB | 16 Q