3v4l.org

run code in 300+ PHP versions simultaneously
<html> <head> <title></title> </head> <body> <!-- Put the body of your page below this line --> <?php //ini_set("display_errors", 1); //ini_set("track_errors", 1); //ini_set("html_errors", 1); //error_reporting(E_ALL); //The following script is tested only with servers running on Minecraft 1.7. $SERVER_IP = "69.30.205.202"; //Insert the IP of the server you want to query. $SERVER_PORT = "25565"; //Insert the PORT of the server you want to ping. Needed to get the favicon, motd, players online and players max. etc $QUERY_PORT = "25565"; //Port of query.port="" in your server.properties. Needed for the playerlist! Can be the same like the port or different. Query must be enabled in your server.properties file! $HEADS = "3D"; //"normal" / "3D" $show_max = "unlimited"; // how much playerheads should we display? "unlimited" / "10" / "53"/ ... $SHOW_FAVICON = "on"; //"off" / "on" $TITLE = "My fancy Serverpage"; $TITLE_BLOCK_ONE = "General Information"; $TITLE_BLOCK_TWO = "Players"; //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// $ping = json_decode(file_get_contents('http://api.minetools.eu/ping/' . $SERVER_IP . '/' . $SERVER_PORT . ''), true); $query = json_decode(file_get_contents('http://api.minetools.eu/query/' . $SERVER_IP . '/' . $QUERY_PORT . ''), true); //Put the collected player information into an array for later use. if(empty($ping['error'])) { $version = $ping['version']['name']; $online = $ping['players']['online']; $max = $ping['players']['max']; $motd = $ping['description']; $favicon = $ping['favicon']; } if(empty($query['error'])) { $playerlist = $query['Playerlist']; } ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title><?php echo htmlspecialchars($TITLE); ?></title> <link rel="stylesheet" href="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.no-icons.min.css"> <link href='http://fonts.googleapis.com/css?family=Lato:300,400' rel='stylesheet' type='text/css'> <link href="https://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.css" rel="stylesheet"> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script> <script type="text/javascript" src="https://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/js/bootstrap.min.js"></script> <script language="javascript"> jQuery(document).ready(function(){ $("[rel='tooltip']").tooltip(); }); </script> <style> /*Custom CSS Overrides*/ body { font-family: 'Lato', sans-serif !important; } </style> </head> <body> <div class="container"> <h1><?php echo htmlspecialchars($TITLE); ?></h1><hr> <div class="row"> <div class="span4"> <h3><?php echo htmlspecialchars($TITLE_BLOCK_ONE); ?></h3> <table class="table table-striped"> <tbody> <tr> <td><b>IP</b></td> <td><?php echo $SERVER_IP; ?></td> </tr> <?php if(empty($ping['error'])) { ?> <tr> <td><b>Version</b></td> <td><?php echo $version; ?></td> </tr> <?php } ?> <?php if(empty($ping['error'])) { ?> <tr> <td><b>Players</b></td> <td><?php echo "".$online." / ".$max."";?></td> </tr> <?php } ?> <tr> <td><b>Status</b></td> <td><?php if(empty($ping['error'])) { echo "<i class=\"icon-ok-sign\"></i> Server is online"; } else { echo "<i class=\"icon-remove-sign\"></i> Server is offline";}?></td> </tr> <?php if(empty($ping['error'])) { ?> <?php if(!empty($favicon)) { ?> <?php if ($SHOW_FAVICON == "on") { ?> <tr> <td><b>Favicon</b></td> <td><img src='<?php echo $favicon; ?>' width="64px" height="64px" style="float:left;"/></td> </tr> <?php } ?> <?php } ?> <?php } ?> </tbody> </table> </div> <div class="span8" style="font-size:0px;"> <h3><?php echo htmlspecialchars($TITLE_BLOCK_TWO); ?></h3> <?php if($HEADS == "3D") { $url = "https://cravatar.eu/helmhead/"; } else { $url = "https://cravatar.eu/helmavatar/"; } if(empty($query['error'])) { if($playerlist != "null") { //is at least one player online? Then display it! $shown = "0"; foreach ($playerlist as $player) { $shown++; if($shown < $show_max + 1 || $show_max == "unlimited") { ?> <a data-placement="top" rel="tooltip" style="display: inline-block;" title="<?php echo $player;?>"> <img src="<?php echo $url.$player;?>/50" size="40" width="40" height="40" style="width: 40px; height: 40px; margin-bottom: 5px; margin-right: 5px; border-radius: 3px; "/></a> <?php } } if($shown > $show_max && $show_max != "unlimited") { echo '<div class="span8" style="font-size:16px; margin-left: 0px;">'; echo "and " . (count($playerlist) - $show_max) . " more ..."; echo '</div>'; } } else { echo "<div class=\"alert\" style=\"font-size:16px;\"> There are no players online at the moment!</div>"; } } else { echo "<div class=\"alert\" style=\"font-size:16px;\"> Query must be enabled in your server.properties file!</div>"; } ?> </div> </div> </div> </body> </html> <!-- Put the body of your page above this line --> </body> </html>
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 36, Position 2 = 49
Branch analysis from position: 36
2 jumps found. (Code = 43) Position 1 = 51, Position 2 = 53
Branch analysis from position: 51
2 jumps found. (Code = 43) Position 1 = 73, Position 2 = 76
Branch analysis from position: 73
2 jumps found. (Code = 43) Position 1 = 79, Position 2 = 86
Branch analysis from position: 79
2 jumps found. (Code = 43) Position 1 = 89, Position 2 = 91
Branch analysis from position: 89
1 jumps found. (Code = 42) Position 1 = 92
Branch analysis from position: 92
2 jumps found. (Code = 43) Position 1 = 95, Position 2 = 107
Branch analysis from position: 95
2 jumps found. (Code = 43) Position 1 = 99, Position 2 = 106
Branch analysis from position: 99
2 jumps found. (Code = 43) Position 1 = 102, Position 2 = 105
Branch analysis from position: 102
2 jumps found. (Code = 43) Position 1 = 115, Position 2 = 117
Branch analysis from position: 115
1 jumps found. (Code = 42) Position 1 = 118
Branch analysis from position: 118
2 jumps found. (Code = 43) Position 1 = 120, Position 2 = 155
Branch analysis from position: 120
2 jumps found. (Code = 43) Position 1 = 122, Position 2 = 153
Branch analysis from position: 122
2 jumps found. (Code = 77) Position 1 = 124, Position 2 = 139
Branch analysis from position: 124
2 jumps found. (Code = 78) Position 1 = 125, Position 2 = 139
Branch analysis from position: 125
2 jumps found. (Code = 47) Position 1 = 129, Position 2 = 131
Branch analysis from position: 129
2 jumps found. (Code = 43) Position 1 = 132, Position 2 = 138
Branch analysis from position: 132
1 jumps found. (Code = 42) Position 1 = 124
Branch analysis from position: 124
Branch analysis from position: 138
Branch analysis from position: 131
Branch analysis from position: 139
2 jumps found. (Code = 46) Position 1 = 142, Position 2 = 144
Branch analysis from position: 142
2 jumps found. (Code = 43) Position 1 = 145, Position 2 = 152
Branch analysis from position: 145
1 jumps found. (Code = 42) Position 1 = 154
Branch analysis from position: 154
1 jumps found. (Code = 42) Position 1 = 156
Branch analysis from position: 156
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 152
Branch analysis from position: 144
Branch analysis from position: 139
Branch analysis from position: 153
1 jumps found. (Code = 42) Position 1 = 156
Branch analysis from position: 156
Branch analysis from position: 155
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 117
2 jumps found. (Code = 43) Position 1 = 120, Position 2 = 155
Branch analysis from position: 120
Branch analysis from position: 155
Branch analysis from position: 105
Branch analysis from position: 106
Branch analysis from position: 107
Branch analysis from position: 91
2 jumps found. (Code = 43) Position 1 = 95, Position 2 = 107
Branch analysis from position: 95
Branch analysis from position: 107
Branch analysis from position: 86
Branch analysis from position: 76
Branch analysis from position: 53
Branch analysis from position: 49
filename:       /in/ca5fj
function name:  (null)
number of ops:  158
compiled vars:  !0 = $SERVER_IP, !1 = $SERVER_PORT, !2 = $QUERY_PORT, !3 = $HEADS, !4 = $show_max, !5 = $SHOW_FAVICON, !6 = $TITLE, !7 = $TITLE_BLOCK_ONE, !8 = $TITLE_BLOCK_TWO, !9 = $ping, !10 = $query, !11 = $version, !12 = $online, !13 = $max, !14 = $motd, !15 = $favicon, !16 = $playerlist, !17 = $url, !18 = $shown, !19 = $player
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    1     0  E >   ECHO                                                     '%3Chtml%3E%0A%3Chead%3E%0A%3Ctitle%3E%3C%2Ftitle%3E%0A%3C%2Fhead%3E%0A%3Cbody%3E%0A%3C%21--+Put+the+body+of+your+page+below+this+line+--%3E%0A'
   13     1        ASSIGN                                                   !0, '69.30.205.202'
   14     2        ASSIGN                                                   !1, '25565'
   15     3        ASSIGN                                                   !2, '25565'
   16     4        ASSIGN                                                   !3, '3D'
   17     5        ASSIGN                                                   !4, 'unlimited'
   18     6        ASSIGN                                                   !5, 'on'
   19     7        ASSIGN                                                   !6, 'My+fancy+Serverpage'
   20     8        ASSIGN                                                   !7, 'General+Information'
   21     9        ASSIGN                                                   !8, 'Players'
   23    10        INIT_FCALL                                               'json_decode'
         11        INIT_FCALL                                               'file_get_contents'
         12        CONCAT                                           ~29     'http%3A%2F%2Fapi.minetools.eu%2Fping%2F', !0
         13        CONCAT                                           ~30     ~29, '%2F'
         14        CONCAT                                           ~31     ~30, !1
         15        CONCAT                                           ~32     ~31, ''
         16        SEND_VAL                                                 ~32
         17        DO_ICALL                                         $33     
         18        SEND_VAR                                                 $33
         19        SEND_VAL                                                 <true>
         20        DO_ICALL                                         $34     
         21        ASSIGN                                                   !9, $34
   24    22        INIT_FCALL                                               'json_decode'
         23        INIT_FCALL                                               'file_get_contents'
         24        CONCAT                                           ~36     'http%3A%2F%2Fapi.minetools.eu%2Fquery%2F', !0
         25        CONCAT                                           ~37     ~36, '%2F'
         26        CONCAT                                           ~38     ~37, !2
         27        CONCAT                                           ~39     ~38, ''
         28        SEND_VAL                                                 ~39
         29        DO_ICALL                                         $40     
         30        SEND_VAR                                                 $40
         31        SEND_VAL                                                 <true>
         32        DO_ICALL                                         $41     
         33        ASSIGN                                                   !10, $41
   26    34        ISSET_ISEMPTY_DIM_OBJ                         1          !9, 'error'
         35      > JMPZ                                                     ~43, ->49
   27    36    >   FETCH_DIM_R                                      ~44     !9, 'version'
         37        FETCH_DIM_R                                      ~45     ~44, 'name'
         38        ASSIGN                                                   !11, ~45
   28    39        FETCH_DIM_R                                      ~47     !9, 'players'
         40        FETCH_DIM_R                                      ~48     ~47, 'online'
         41        ASSIGN                                                   !12, ~48
   29    42        FETCH_DIM_R                                      ~50     !9, 'players'
         43        FETCH_DIM_R                                      ~51     ~50, 'max'
         44        ASSIGN                                                   !13, ~51
   30    45        FETCH_DIM_R                                      ~53     !9, 'description'
         46        ASSIGN                                                   !14, ~53
   31    47        FETCH_DIM_R                                      ~55     !9, 'favicon'
         48        ASSIGN                                                   !15, ~55
   33    49    >   ISSET_ISEMPTY_DIM_OBJ                         1          !10, 'error'
         50      > JMPZ                                                     ~57, ->53
   34    51    >   FETCH_DIM_R                                      ~58     !10, 'Playerlist'
         52        ASSIGN                                                   !16, ~58
   37    53    >   ECHO                                                     '%3C%21DOCTYPE+html%3E%0A%3Chtml%3E%0A%09%3Chead%3E%0A++++++++%3Cmeta+charset%3D%22utf-8%22%3E%0A++++++++%3Ctitle%3E'
   41    54        INIT_FCALL                                               'htmlspecialchars'
         55        SEND_VAR                                                 !6
         56        DO_ICALL                                         $60     
         57        ECHO                                                     $60
         58        ECHO                                                     '%3C%2Ftitle%3E%0A++++++++%3Clink+rel%3D%22stylesheet%22+href%3D%22https%3A%2F%2Fnetdna.bootstrapcdn.com%2Ftwitter-bootstrap%2F2.3.2%2Fcss%2Fbootstrap-combined.no-icons.min.css%22%3E%0A++++%09%3Clink+href%3D%27http%3A%2F%2Ffonts.googleapis.com%2Fcss%3Ffamily%3DLato%3A300%2C400%27+rel%3D%27stylesheet%27+type%3D%27text%2Fcss%27%3E%0A++++%09%3Clink+href%3D%22https%3A%2F%2Fnetdna.bootstrapcdn.com%2Ffont-awesome%2F3.2.1%2Fcss%2Ffont-awesome.css%22+rel%3D%22stylesheet%22%3E%0A++++%09%3Cscript+type%3D%22text%2Fjavascript%22+src%3D%22https%3A%2F%2Fajax.googleapis.com%2Fajax%2Flibs%2Fjquery%2F2.0.3%2Fjquery.min.js%22%3E%3C%2Fscript%3E%0A++++%09%3Cscript+type%3D%22text%2Fjavascript%22+src%3D%22https%3A%2F%2Fnetdna.bootstrapcdn.com%2Ftwitter-bootstrap%2F2.3.2%2Fjs%2Fbootstrap.min.js%22%3E%3C%2Fscript%3E%0A++++%09%3Cscript+language%3D%22javascript%22%3E%0A+++%09%09jQuery%28document%29.ready%28function%28%29%7B%0A+%09%09%09%24%28%22%5Brel%3D%27tooltip%27%5D%22%29.tooltip%28%29%3B%0A+++++%09%7D%29%3B%0A%09%09%3C%2Fscript%3E%0A++++%09%3Cstyle%3E%0A++++%09%2F%2ACustom+CSS+Overrides%2A%2F%0A++++%09body+%7B%0A++++++%09%09font-family%3A+%27Lato%27%2C+sans-serif+%21important%3B%0A++++%09%7D%0A++++%09%3C%2Fstyle%3E%0A++++%3C%2Fhead%3E%0A++++%3Cbody%3E%0A%09%3Cdiv+class%3D%22container%22%3E%0A++++++++%3Ch1%3E'
   61    59        INIT_FCALL                                               'htmlspecialchars'
         60        SEND_VAR                                                 !6
         61        DO_ICALL                                         $61     
         62        ECHO                                                     $61
         63        ECHO                                                     '%3C%2Fh1%3E%3Chr%3E+++++++%0A%09%09%3Cdiv+class%3D%22row%22%3E%0A%09%09%09%3Cdiv+class%3D%22span4%22%3E%0A%09%09%09%09%3Ch3%3E'
   64    64        INIT_FCALL                                               'htmlspecialchars'
         65        SEND_VAR                                                 !7
         66        DO_ICALL                                         $62     
         67        ECHO                                                     $62
         68        ECHO                                                     '%3C%2Fh3%3E%0A%09%09%09%09%3Ctable+class%3D%22table+table-striped%22%3E%0A%09%09%09%09%09%3Ctbody%3E%0A%09%09%09%09%09%09%3Ctr%3E%0A%09%09%09%09%09%09%09%3Ctd%3E%3Cb%3EIP%3C%2Fb%3E%3C%2Ftd%3E%0A%09%09%09%09%09%09%09%3Ctd%3E'
   69    69        ECHO                                                     !0
         70        ECHO                                                     '%3C%2Ftd%3E%0A%09%09%09%09%09%09%3C%2Ftr%3E%0A%09%09%09%09%09'
   71    71        ISSET_ISEMPTY_DIM_OBJ                         1          !9, 'error'
         72      > JMPZ                                                     ~63, ->76
   72    73    >   ECHO                                                     '%09%09%09%09%09%09%3Ctr%3E%0A%09%09%09%09%09%09%09%3Ctd%3E%3Cb%3EVersion%3C%2Fb%3E%3C%2Ftd%3E%0A%09%09%09%09%09%09%09%3Ctd%3E'
   74    74        ECHO                                                     !11
         75        ECHO                                                     '%3C%2Ftd%3E%0A%09%09%09%09%09%09%3C%2Ftr%3E%0A%09%09%09%09%09'
   77    76    >   ECHO                                                     '%09%09%09%09%09'
         77        ISSET_ISEMPTY_DIM_OBJ                         1          !9, 'error'
         78      > JMPZ                                                     ~64, ->86
   78    79    >   ECHO                                                     '%09%09%09%09%09%09%3Ctr%3E%0A%09%09%09%09%09%09%09%3Ctd%3E%3Cb%3EPlayers%3C%2Fb%3E%3C%2Ftd%3E%0A%09%09%09%09%09%09%09%3Ctd%3E'
   80    80        CONCAT                                           ~65     '', !12
         81        CONCAT                                           ~66     ~65, '+%2F+'
         82        CONCAT                                           ~67     ~66, !13
         83        CONCAT                                           ~68     ~67, ''
         84        ECHO                                                     ~68
         85        ECHO                                                     '%3C%2Ftd%3E%0A%09%09%09%09%09%09%3C%2Ftr%3E%0A%09%09%09%09%09'
   83    86    >   ECHO                                                     '%09%09%09%09%09%09%3Ctr%3E%0A%09%09%09%09%09%09%09%3Ctd%3E%3Cb%3EStatus%3C%2Fb%3E%3C%2Ftd%3E%0A%09%09%09%09%09%09%09%3Ctd%3E'
   85    87        ISSET_ISEMPTY_DIM_OBJ                         1          !9, 'error'
         88      > JMPZ                                                     ~69, ->91
         89    >   ECHO                                                     '%3Ci+class%3D%22icon-ok-sign%22%3E%3C%2Fi%3E+Server+is+online'
         90      > JMP                                                      ->92
         91    >   ECHO                                                     '%3Ci+class%3D%22icon-remove-sign%22%3E%3C%2Fi%3E+Server+is+offline'
         92    >   ECHO                                                     '%3C%2Ftd%3E%0A%09%09%09%09%09%09%3C%2Ftr%3E%0A%09%09%09%09%09'
   87    93        ISSET_ISEMPTY_DIM_OBJ                         1          !9, 'error'
         94      > JMPZ                                                     ~70, ->107
   88    95    >   ECHO                                                     '%09%09%09%09%09'
         96        ISSET_ISEMPTY_CV                                 ~71     !15
         97        BOOL_NOT                                         ~72     ~71
         98      > JMPZ                                                     ~72, ->106
   89    99    >   ECHO                                                     '%09%09%09%09%09'
        100        IS_EQUAL                                                 !5, 'on'
        101      > JMPZ                                                     ~73, ->105
   90   102    >   ECHO                                                     '%09%09%09%09%09%09%3Ctr%3E%0A%09%09%09%09%09%09%09%3Ctd%3E%3Cb%3EFavicon%3C%2Fb%3E%3C%2Ftd%3E%0A%09%09%09%09%09%09%09%3Ctd%3E%3Cimg+src%3D%27'
   92   103        ECHO                                                     !15
        104        ECHO                                                     '%27+width%3D%2264px%22+height%3D%2264px%22+style%3D%22float%3Aleft%3B%22%2F%3E%3C%2Ftd%3E%0A%09%09%09%09%09%09%3C%2Ftr%3E%0A%09%09%09%09%09'
   95   105    >   ECHO                                                     '%09%09%09%09%09'
   96   106    >   ECHO                                                     '%09%09%09%09%09'
   97   107    >   ECHO                                                     '%09%09%09%09%09%3C%2Ftbody%3E%0A%09%09%09%09%3C%2Ftable%3E%0A%09%09%09%3C%2Fdiv%3E%0A%09%09%09%3Cdiv+class%3D%22span8%22+style%3D%22font-size%3A0px%3B%22%3E%0A%09%09%09%09%3Ch3%3E'
  101   108        INIT_FCALL                                               'htmlspecialchars'
        109        SEND_VAR                                                 !8
        110        DO_ICALL                                         $74     
        111        ECHO                                                     $74
        112        ECHO                                                     '%3C%2Fh3%3E%0A%09%09%09%09'
  103   113        IS_EQUAL                                                 !3, '3D'
        114      > JMPZ                                                     ~75, ->117
  104   115    >   ASSIGN                                                   !17, 'https%3A%2F%2Fcravatar.eu%2Fhelmhead%2F'
        116      > JMP                                                      ->118
  106   117    >   ASSIGN                                                   !17, 'https%3A%2F%2Fcravatar.eu%2Fhelmavatar%2F'
  108   118    >   ISSET_ISEMPTY_DIM_OBJ                         1          !10, 'error'
        119      > JMPZ                                                     ~78, ->155
  109   120    >   IS_NOT_EQUAL                                             !16, 'null'
        121      > JMPZ                                                     ~79, ->153
  110   122    >   ASSIGN                                                   !18, '0'
  111   123      > FE_RESET_R                                       $81     !16, ->139
        124    > > FE_FETCH_R                                               $81, !19, ->139
  112   125    >   PRE_INC                                                  !18
  113   126        ADD                                              ~83     !4, 1
        127        IS_SMALLER                                       ~84     !18, ~83
        128      > JMPNZ_EX                                         ~84     ~84, ->131
        129    >   IS_EQUAL                                         ~85     !4, 'unlimited'
        130        BOOL                                             ~84     ~85
        131    > > JMPZ                                                     ~84, ->138
  115   132    >   ECHO                                                     '%09%09%09%09%09%09%09%09%3Ca+data-placement%3D%22top%22+rel%3D%22tooltip%22+style%3D%22display%3A+inline-block%3B%22+title%3D%22'
        133        ECHO                                                     !19
        134        ECHO                                                     '%22%3E%0A%09%09%09%09%09%09%09%09%3Cimg+src%3D%22'
  116   135        CONCAT                                           ~86     !17, !19
        136        ECHO                                                     ~86
        137        ECHO                                                     '%2F50%22+size%3D%2240%22+width%3D%2240%22+height%3D%2240%22+style%3D%22width%3A+40px%3B+height%3A+40px%3B+margin-bottom%3A+5px%3B+margin-right%3A+5px%3B+border-radius%3A+3px%3B+%22%2F%3E%3C%2Fa%3E%0A%09%09%09%09%09'
  111   138    > > JMP                                                      ->124
        139    >   FE_FREE                                                  $81
  119   140        IS_SMALLER                                       ~87     !4, !18
        141      > JMPZ_EX                                          ~87     ~87, ->144
        142    >   IS_NOT_EQUAL                                     ~88     !4, 'unlimited'
        143        BOOL                                             ~87     ~88
        144    > > JMPZ                                                     ~87, ->152
  120   145    >   ECHO                                                     '%3Cdiv+class%3D%22span8%22+style%3D%22font-size%3A16px%3B+margin-left%3A+0px%3B%22%3E'
  121   146        COUNT                                            ~89     !16
        147        SUB                                              ~90     ~89, !4
        148        CONCAT                                           ~91     'and+', ~90
        149        CONCAT                                           ~92     ~91, '+more+...'
        150        ECHO                                                     ~92
  122   151        ECHO                                                     '%3C%2Fdiv%3E'
        152    > > JMP                                                      ->154
  125   153    >   ECHO                                                     '%3Cdiv+class%3D%22alert%22+style%3D%22font-size%3A16px%3B%22%3E+There+are+no+players+online+at+the+moment%21%3C%2Fdiv%3E'
        154    > > JMP                                                      ->156
  128   155    >   ECHO                                                     '%3Cdiv+class%3D%22alert%22+style%3D%22font-size%3A16px%3B%22%3E+Query+must+be+enabled+in+your+server.properties+file%21%3C%2Fdiv%3E'
  130   156    >   ECHO                                                     '%09%09%09%3C%2Fdiv%3E%0A%09%09%3C%2Fdiv%3E%0A%09%3C%2Fdiv%3E%0A%09%3C%2Fbody%3E%0A%3C%2Fhtml%3E%0A%3C%21--+Put+the+body+of+your+page+above+this+line+--%3E%0A%3C%2Fbody%3E%0A%3C%2Fhtml%3E'
  137   157      > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
158.01 ms | 1421 KiB | 19 Q