3v4l.org

run code in 300+ PHP versions simultaneously
<?php /** * Confirms that the activation key that is sent in an email after a user signs * up for a new blog matches the key for that user and then displays confirmation. * * @package WordPress */ define( 'WP_INSTALLING', true ); /** Sets up the WordPress Environment. */ require( dirname(__FILE__) . '/wp-load.php' ); require( dirname( __FILE__ ) . '/wp-blog-header.php' ); if ( !is_multisite() ) { wp_redirect( site_url( '/wp-login.php?action=register' ) ); die(); } if ( is_object( $wp_object_cache ) ) $wp_object_cache->cache_enabled = false; // Fix for page title $wp_query->is_404 = false; /** * Fires before the Site Activation page is loaded. * * @since 3.0.0 */ do_action( 'activate_header' ); /** * Adds an action hook specific to this page that fires on wp_head * * @since MU */ function do_activate_header() { /** * Fires before the Site Activation page is loaded, but on the wp_head action. * * @since 3.0.0 */ do_action( 'activate_wp_head' ); } add_action( 'wp_head', 'do_activate_header' ); /** * Loads styles specific to this page. * * @since MU */ function wpmu_activate_stylesheet() { ?> <style type="text/css"> form { margin-top: 2em; } #submit, #key { width: 90%; font-size: 24px; } #language { margin-top: .5em; } .error { background: #f66; } span.h3 { padding: 0 8px; font-size: 1.3em; font-family: "Lucida Grande", Verdana, Arial, "Bitstream Vera Sans", sans-serif; font-weight: bold; color: #333; } </style> <?php } add_action( 'wp_head', 'wpmu_activate_stylesheet' ); get_header(); ?> <div id="content" class="widecolumn"> <?php if ( empty($_GET['key']) && empty($_POST['key']) ) { ?> <h2><?php _e('Activation Key Required') ?></h2> <form name="activateform" id="activateform" method="post" action="<?php echo network_site_url('wp-activate.php'); ?>"> <p> <label for="key"><?php _e('Activation Key:') ?></label> <br /><input type="text" name="key" id="key" value="" size="50" /> </p> <p class="submit"> <input id="submit" type="submit" name="Submit" class="submit" value="<?php esc_attr_e('Activate') ?>" /> </p> </form> <?php } else { $key = !empty($_GET['key']) ? $_GET['key'] : $_POST['key']; $result = wpmu_activate_signup( $key ); if ( is_wp_error($result) ) { if ( 'already_active' == $result->get_error_code() || 'blog_taken' == $result->get_error_code() ) { $signup = $result->get_error_data(); ?> <h2><?php _e('Your account is now active!'); ?></h2> <?php echo '<p class="lead-in">'; if ( $signup->domain . $signup->path == '' ) { printf( __('Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of &#8220;%2$s&#8221;. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.'), network_site_url( 'wp-login.php', 'login' ), $signup->user_login, $signup->user_email, wp_lostpassword_url() ); } else { printf( __('Your site at <a href="%1$s">%2$s</a> is active. You may now log in to your site using your chosen username of &#8220;%3$s&#8221;. Please check your email inbox at %4$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%5$s">reset your password</a>.'), 'http://' . $signup->domain, $signup->domain, $signup->user_login, $signup->user_email, wp_lostpassword_url() ); } echo '</p>'; } else { ?> <h2><?php _e('An error occurred during the activation'); ?></h2> <?php echo '<p>'.$result->get_error_message().'</p>'; } } else { $url = isset( $result['blog_id'] ) ? get_blogaddress_by_id( (int) $result['blog_id'] ) : ''; $user = get_userdata( (int) $result['user_id'] ); ?> <h2><?php _e('Your account is now active!'); ?></h2> <div id="signup-welcome"> <p><span class="h3"><?php _e('Username:'); ?></span> <?php echo $user->user_login ?></p> <p><span class="h3"><?php _e('Password:'); ?></span> <?php echo $result['password']; ?></p> </div> <?php if ( $url && $url != network_home_url( '', 'http' ) ) : ?> <p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">View your site</a> or <a href="%2$s">Log in</a>'), $url, $url . 'wp-login.php' ); ?></p> <?php else: ?> <p class="view"><?php printf( __('Your account is now activated. <a href="%1$s">Log in</a> or go back to the <a href="%2$s">homepage</a>.' ), network_site_url('wp-login.php', 'login'), network_home_url() ); ?></p> <?php endif; } } ?> </div> <script type="text/javascript"> var key_input = document.getElementById('key'); key_input && key_input.focus(); </script> <?php get_footer();
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 18, Position 2 = 25
Branch analysis from position: 18
1 jumps found. (Code = 79) Position 1 = -2
Branch analysis from position: 25
2 jumps found. (Code = 43) Position 1 = 27, Position 2 = 29
Branch analysis from position: 27
2 jumps found. (Code = 46) Position 1 = 48, Position 2 = 51
Branch analysis from position: 48
2 jumps found. (Code = 43) Position 1 = 52, Position 2 = 71
Branch analysis from position: 52
1 jumps found. (Code = 42) Position 1 = 236
Branch analysis from position: 236
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 71
2 jumps found. (Code = 43) Position 1 = 75, Position 2 = 79
Branch analysis from position: 75
1 jumps found. (Code = 42) Position 1 = 82
Branch analysis from position: 82
2 jumps found. (Code = 43) Position 1 = 91, Position 2 = 164
Branch analysis from position: 91
2 jumps found. (Code = 47) Position 1 = 95, Position 2 = 99
Branch analysis from position: 95
2 jumps found. (Code = 43) Position 1 = 100, Position 2 = 153
Branch analysis from position: 100
2 jumps found. (Code = 43) Position 1 = 114, Position 2 = 133
Branch analysis from position: 114
1 jumps found. (Code = 42) Position 1 = 151
Branch analysis from position: 151
1 jumps found. (Code = 42) Position 1 = 163
Branch analysis from position: 163
1 jumps found. (Code = 42) Position 1 = 236
Branch analysis from position: 236
Branch analysis from position: 133
1 jumps found. (Code = 42) Position 1 = 163
Branch analysis from position: 163
Branch analysis from position: 153
1 jumps found. (Code = 42) Position 1 = 236
Branch analysis from position: 236
Branch analysis from position: 99
Branch analysis from position: 164
2 jumps found. (Code = 43) Position 1 = 166, Position 2 = 173
Branch analysis from position: 166
1 jumps found. (Code = 42) Position 1 = 174
Branch analysis from position: 174
2 jumps found. (Code = 46) Position 1 = 201, Position 2 = 207
Branch analysis from position: 201
2 jumps found. (Code = 43) Position 1 = 208, Position 2 = 220
Branch analysis from position: 208
1 jumps found. (Code = 42) Position 1 = 236
Branch analysis from position: 236
Branch analysis from position: 220
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 207
Branch analysis from position: 173
2 jumps found. (Code = 46) Position 1 = 201, Position 2 = 207
Branch analysis from position: 201
Branch analysis from position: 207
Branch analysis from position: 79
2 jumps found. (Code = 43) Position 1 = 91, Position 2 = 164
Branch analysis from position: 91
Branch analysis from position: 164
Branch analysis from position: 51
Branch analysis from position: 29
filename:       /in/F1utG
function name:  (null)
number of ops:  240
compiled vars:  !0 = $wp_object_cache, !1 = $wp_query, !2 = $key, !3 = $result, !4 = $signup, !5 = $url, !6 = $user
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    9     0  E >   INIT_FCALL                                               'define'
          1        SEND_VAL                                                 'WP_INSTALLING'
          2        SEND_VAL                                                 <true>
          3        DO_ICALL                                                 
   12     4        INIT_FCALL                                               'dirname'
          5        SEND_VAL                                                 '%2Fin%2FF1utG'
          6        DO_ICALL                                         $8      
          7        CONCAT                                           ~9      $8, '%2Fwp-load.php'
          8        INCLUDE_OR_EVAL                                          ~9, REQUIRE
   14     9        INIT_FCALL                                               'dirname'
         10        SEND_VAL                                                 '%2Fin%2FF1utG'
         11        DO_ICALL                                         $11     
         12        CONCAT                                           ~12     $11, '%2Fwp-blog-header.php'
         13        INCLUDE_OR_EVAL                                          ~12, REQUIRE
   16    14        INIT_FCALL_BY_NAME                                       'is_multisite'
         15        DO_FCALL                                      0  $14     
         16        BOOL_NOT                                         ~15     $14
         17      > JMPZ                                                     ~15, ->25
   17    18    >   INIT_FCALL_BY_NAME                                       'wp_redirect'
         19        INIT_FCALL_BY_NAME                                       'site_url'
         20        SEND_VAL_EX                                              '%2Fwp-login.php%3Faction%3Dregister'
         21        DO_FCALL                                      0  $16     
         22        SEND_VAR_NO_REF_EX                                       $16
         23        DO_FCALL                                      0          
   18    24      > EXIT                                                     
   21    25    >   TYPE_CHECK                                  256          !0
         26      > JMPZ                                                     ~18, ->29
   22    27    >   ASSIGN_OBJ                                               !0, 'cache_enabled'
         28        OP_DATA                                                  <false>
   25    29    >   ASSIGN_OBJ                                               !1, 'is_404'
         30        OP_DATA                                                  <false>
   32    31        INIT_FCALL_BY_NAME                                       'do_action'
         32        SEND_VAL_EX                                              'activate_header'
         33        DO_FCALL                                      0          
   47    34        INIT_FCALL_BY_NAME                                       'add_action'
         35        SEND_VAL_EX                                              'wp_head'
         36        SEND_VAL_EX                                              'do_activate_header'
         37        DO_FCALL                                      0          
   65    38        INIT_FCALL_BY_NAME                                       'add_action'
         39        SEND_VAL_EX                                              'wp_head'
         40        SEND_VAL_EX                                              'wpmu_activate_stylesheet'
         41        DO_FCALL                                      0          
   67    42        INIT_FCALL_BY_NAME                                       'get_header'
         43        DO_FCALL                                      0          
   69    44        ECHO                                                     '%0A%3Cdiv+id%3D%22content%22+class%3D%22widecolumn%22%3E%0A%09'
   71    45        FETCH_IS                                         ~25     '_GET'
         46        ISSET_ISEMPTY_DIM_OBJ                         1  ~26     ~25, 'key'
         47      > JMPZ_EX                                          ~26     ~26, ->51
         48    >   FETCH_IS                                         ~27     '_POST'
         49        ISSET_ISEMPTY_DIM_OBJ                         1  ~28     ~27, 'key'
         50        BOOL                                             ~26     ~28
         51    > > JMPZ                                                     ~26, ->71
   72    52    >   ECHO                                                     '%0A%09%09%3Ch2%3E'
   73    53        INIT_FCALL_BY_NAME                                       '_e'
         54        SEND_VAL_EX                                              'Activation+Key+Required'
         55        DO_FCALL                                      0          
         56        ECHO                                                     '%3C%2Fh2%3E%0A%09%09%3Cform+name%3D%22activateform%22+id%3D%22activateform%22+method%3D%22post%22+action%3D%22'
   74    57        INIT_FCALL_BY_NAME                                       'network_site_url'
         58        SEND_VAL_EX                                              'wp-activate.php'
         59        DO_FCALL                                      0  $30     
         60        ECHO                                                     $30
         61        ECHO                                                     '%22%3E%0A%09%09%09%3Cp%3E%0A%09%09%09++++%3Clabel+for%3D%22key%22%3E'
   76    62        INIT_FCALL_BY_NAME                                       '_e'
         63        SEND_VAL_EX                                              'Activation+Key%3A'
         64        DO_FCALL                                      0          
         65        ECHO                                                     '%3C%2Flabel%3E%0A%09%09%09++++%3Cbr+%2F%3E%3Cinput+type%3D%22text%22+name%3D%22key%22+id%3D%22key%22+value%3D%22%22+size%3D%2250%22+%2F%3E%0A%09%09%09%3C%2Fp%3E%0A%09%09%09%3Cp+class%3D%22submit%22%3E%0A%09%09%09++++%3Cinput+id%3D%22submit%22+type%3D%22submit%22+name%3D%22Submit%22+class%3D%22submit%22+value%3D%22'
   80    66        INIT_FCALL_BY_NAME                                       'esc_attr_e'
         67        SEND_VAL_EX                                              'Activate'
         68        DO_FCALL                                      0          
         69        ECHO                                                     '%22+%2F%3E%0A%09%09%09%3C%2Fp%3E%0A%09%09%3C%2Fform%3E%0A%0A%09'
         70      > JMP                                                      ->236
   86    71    >   FETCH_IS                                         ~33     '_GET'
         72        ISSET_ISEMPTY_DIM_OBJ                         1  ~34     ~33, 'key'
         73        BOOL_NOT                                         ~35     ~34
         74      > JMPZ                                                     ~35, ->79
         75    >   FETCH_R                      global              ~36     '_GET'
         76        FETCH_DIM_R                                      ~37     ~36, 'key'
         77        QM_ASSIGN                                        ~38     ~37
         78      > JMP                                                      ->82
         79    >   FETCH_R                      global              ~39     '_POST'
         80        FETCH_DIM_R                                      ~40     ~39, 'key'
         81        QM_ASSIGN                                        ~38     ~40
         82    >   ASSIGN                                                   !2, ~38
   87    83        INIT_FCALL_BY_NAME                                       'wpmu_activate_signup'
         84        SEND_VAR_EX                                              !2
         85        DO_FCALL                                      0  $42     
         86        ASSIGN                                                   !3, $42
   88    87        INIT_FCALL_BY_NAME                                       'is_wp_error'
         88        SEND_VAR_EX                                              !3
         89        DO_FCALL                                      0  $44     
         90      > JMPZ                                                     $44, ->164
   89    91    >   INIT_METHOD_CALL                                         !3, 'get_error_code'
         92        DO_FCALL                                      0  $45     
         93        IS_EQUAL                                         ~46     $45, 'already_active'
         94      > JMPNZ_EX                                         ~46     ~46, ->99
         95    >   INIT_METHOD_CALL                                         !3, 'get_error_code'
         96        DO_FCALL                                      0  $47     
         97        IS_EQUAL                                         ~48     $47, 'blog_taken'
         98        BOOL                                             ~46     ~48
         99    > > JMPZ                                                     ~46, ->153
   90   100    >   INIT_METHOD_CALL                                         !3, 'get_error_data'
        101        DO_FCALL                                      0  $49     
        102        ASSIGN                                                   !4, $49
   92   103        ECHO                                                     '%09%09%09%09%3Ch2%3E'
        104        INIT_FCALL_BY_NAME                                       '_e'
        105        SEND_VAL_EX                                              'Your+account+is+now+active%21'
        106        DO_FCALL                                      0          
        107        ECHO                                                     '%3C%2Fh2%3E%0A%09%09%09%09'
   94   108        ECHO                                                     '%3Cp+class%3D%22lead-in%22%3E'
   95   109        FETCH_OBJ_R                                      ~52     !4, 'domain'
        110        FETCH_OBJ_R                                      ~53     !4, 'path'
        111        CONCAT                                           ~54     ~52, ~53
        112        IS_EQUAL                                                 ~54, ''
        113      > JMPZ                                                     ~55, ->133
   96   114    >   INIT_FCALL                                               'printf'
        115        INIT_FCALL_BY_NAME                                       '__'
        116        SEND_VAL_EX                                              'Your+account+has+been+activated.+You+may+now+%3Ca+href%3D%22%251%24s%22%3Elog+in%3C%2Fa%3E+to+the+site+using+your+chosen+username+of+%26%238220%3B%252%24s%26%238221%3B.+Please+check+your+email+inbox+at+%253%24s+for+your+password+and+login+instructions.+If+you+do+not+receive+an+email%2C+please+check+your+junk+or+spam+folder.+If+you+still+do+not+receive+an+email+within+an+hour%2C+you+can+%3Ca+href%3D%22%254%24s%22%3Ereset+your+password%3C%2Fa%3E.'
        117        DO_FCALL                                      0  $56     
        118        SEND_VAR                                                 $56
        119        INIT_FCALL_BY_NAME                                       'network_site_url'
        120        SEND_VAL_EX                                              'wp-login.php'
        121        SEND_VAL_EX                                              'login'
        122        DO_FCALL                                      0  $57     
        123        SEND_VAR                                                 $57
        124        FETCH_OBJ_R                                      ~58     !4, 'user_login'
        125        SEND_VAL                                                 ~58
        126        FETCH_OBJ_R                                      ~59     !4, 'user_email'
        127        SEND_VAL                                                 ~59
        128        INIT_FCALL_BY_NAME                                       'wp_lostpassword_url'
        129        DO_FCALL                                      0  $60     
        130        SEND_VAR                                                 $60
        131        DO_ICALL                                                 
        132      > JMP                                                      ->151
   98   133    >   INIT_FCALL                                               'printf'
        134        INIT_FCALL_BY_NAME                                       '__'
        135        SEND_VAL_EX                                              'Your+site+at+%3Ca+href%3D%22%251%24s%22%3E%252%24s%3C%2Fa%3E+is+active.+You+may+now+log+in+to+your+site+using+your+chosen+username+of+%26%238220%3B%253%24s%26%238221%3B.+Please+check+your+email+inbox+at+%254%24s+for+your+password+and+login+instructions.+If+you+do+not+receive+an+email%2C+please+check+your+junk+or+spam+folder.+If+you+still+do+not+receive+an+email+within+an+hour%2C+you+can+%3Ca+href%3D%22%255%24s%22%3Ereset+your+password%3C%2Fa%3E.'
        136        DO_FCALL                                      0  $62     
        137        SEND_VAR                                                 $62
        138        FETCH_OBJ_R                                      ~63     !4, 'domain'
        139        CONCAT                                           ~64     'http%3A%2F%2F', ~63
        140        SEND_VAL                                                 ~64
        141        FETCH_OBJ_R                                      ~65     !4, 'domain'
        142        SEND_VAL                                                 ~65
        143        FETCH_OBJ_R                                      ~66     !4, 'user_login'
        144        SEND_VAL                                                 ~66
        145        FETCH_OBJ_R                                      ~67     !4, 'user_email'
        146        SEND_VAL                                                 ~67
        147        INIT_FCALL_BY_NAME                                       'wp_lostpassword_url'
        148        DO_FCALL                                      0  $68     
        149        SEND_VAR                                                 $68
        150        DO_ICALL                                                 
  100   151    >   ECHO                                                     '%3C%2Fp%3E'
        152      > JMP                                                      ->163
  103   153    >   ECHO                                                     '%09%09%09%09%3Ch2%3E'
        154        INIT_FCALL_BY_NAME                                       '_e'
        155        SEND_VAL_EX                                              'An+error+occurred+during+the+activation'
        156        DO_FCALL                                      0          
        157        ECHO                                                     '%3C%2Fh2%3E%0A%09%09%09%09'
  105   158        INIT_METHOD_CALL                                         !3, 'get_error_message'
        159        DO_FCALL                                      0  $71     
        160        CONCAT                                           ~72     '%3Cp%3E', $71
        161        CONCAT                                           ~73     ~72, '%3C%2Fp%3E'
        162        ECHO                                                     ~73
        163    > > JMP                                                      ->236
  108   164    >   ISSET_ISEMPTY_DIM_OBJ                         0          !3, 'blog_id'
        165      > JMPZ                                                     ~74, ->173
        166    >   INIT_FCALL_BY_NAME                                       'get_blogaddress_by_id'
        167        FETCH_DIM_R                                      ~75     !3, 'blog_id'
        168        CAST                                          4  ~76     ~75
        169        SEND_VAL_EX                                              ~76
        170        DO_FCALL                                      0  $77     
        171        QM_ASSIGN                                        ~78     $77
        172      > JMP                                                      ->174
        173    >   QM_ASSIGN                                        ~78     ''
        174    >   ASSIGN                                                   !5, ~78
  109   175        INIT_FCALL_BY_NAME                                       'get_userdata'
        176        FETCH_DIM_R                                      ~80     !3, 'user_id'
        177        CAST                                          4  ~81     ~80
        178        SEND_VAL_EX                                              ~81
        179        DO_FCALL                                      0  $82     
        180        ASSIGN                                                   !6, $82
  111   181        ECHO                                                     '%09%09%09%3Ch2%3E'
        182        INIT_FCALL_BY_NAME                                       '_e'
        183        SEND_VAL_EX                                              'Your+account+is+now+active%21'
        184        DO_FCALL                                      0          
        185        ECHO                                                     '%3C%2Fh2%3E%0A%0A%09%09%09%3Cdiv+id%3D%22signup-welcome%22%3E%0A%09%09%09%09%3Cp%3E%3Cspan+class%3D%22h3%22%3E'
  114   186        INIT_FCALL_BY_NAME                                       '_e'
        187        SEND_VAL_EX                                              'Username%3A'
        188        DO_FCALL                                      0          
        189        ECHO                                                     '%3C%2Fspan%3E+'
        190        FETCH_OBJ_R                                      ~86     !6, 'user_login'
        191        ECHO                                                     ~86
        192        ECHO                                                     '%3C%2Fp%3E%0A%09%09%09%09%3Cp%3E%3Cspan+class%3D%22h3%22%3E'
  115   193        INIT_FCALL_BY_NAME                                       '_e'
        194        SEND_VAL_EX                                              'Password%3A'
        195        DO_FCALL                                      0          
        196        ECHO                                                     '%3C%2Fspan%3E+'
        197        FETCH_DIM_R                                      ~88     !3, 'password'
        198        ECHO                                                     ~88
        199        ECHO                                                     '%3C%2Fp%3E%0A%09%09%09%3C%2Fdiv%3E%0A%0A%09%09%09'
  118   200      > JMPZ_EX                                          ~89     !5, ->207
        201    >   INIT_FCALL_BY_NAME                                       'network_home_url'
        202        SEND_VAL_EX                                              ''
        203        SEND_VAL_EX                                              'http'
        204        DO_FCALL                                      0  $90     
        205        IS_NOT_EQUAL                                     ~91     !5, $90
        206        BOOL                                             ~89     ~91
        207    > > JMPZ                                                     ~89, ->220
  119   208    >   ECHO                                                     '%09%09%09%09%3Cp+class%3D%22view%22%3E'
        209        INIT_FCALL                                               'printf'
        210        INIT_FCALL_BY_NAME                                       '__'
        211        SEND_VAL_EX                                              'Your+account+is+now+activated.+%3Ca+href%3D%22%251%24s%22%3EView+your+site%3C%2Fa%3E+or+%3Ca+href%3D%22%252%24s%22%3ELog+in%3C%2Fa%3E'
        212        DO_FCALL                                      0  $92     
        213        SEND_VAR                                                 $92
        214        SEND_VAR                                                 !5
        215        CONCAT                                           ~93     !5, 'wp-login.php'
        216        SEND_VAL                                                 ~93
        217        DO_ICALL                                                 
        218        ECHO                                                     '%3C%2Fp%3E%0A%09%09%09'
        219      > JMP                                                      ->236
  121   220    >   ECHO                                                     '%09%09%09%09%3Cp+class%3D%22view%22%3E'
        221        INIT_FCALL                                               'printf'
        222        INIT_FCALL_BY_NAME                                       '__'
        223        SEND_VAL_EX                                              'Your+account+is+now+activated.+%3Ca+href%3D%22%251%24s%22%3ELog+in%3C%2Fa%3E+or+go+back+to+the+%3Ca+href%3D%22%252%24s%22%3Ehomepage%3C%2Fa%3E.'
        224        DO_FCALL                                      0  $95     
        225        SEND_VAR                                                 $95
        226        INIT_FCALL_BY_NAME                                       'network_site_url'
        227        SEND_VAL_EX                                              'wp-login.php'
        228        SEND_VAL_EX                                              'login'
        229        DO_FCALL                                      0  $96     
        230        SEND_VAR                                                 $96
        231        INIT_FCALL_BY_NAME                                       'network_home_url'
        232        DO_FCALL                                      0  $97     
        233        SEND_VAR                                                 $97
        234        DO_ICALL                                                 
        235        ECHO                                                     '%3C%2Fp%3E%0A%09%09%09'
  126   236    >   ECHO                                                     '%3C%2Fdiv%3E%0A%3Cscript+type%3D%22text%2Fjavascript%22%3E%0A%09var+key_input+%3D+document.getElementById%28%27key%27%29%3B%0A%09key_input+%26%26+key_input.focus%28%29%3B%0A%3C%2Fscript%3E%0A'
  131   237        INIT_FCALL_BY_NAME                                       'get_footer'
        238        DO_FCALL                                      0          
        239      > RETURN                                                   1

Function do_activate_header:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/F1utG
function name:  do_activate_header
number of ops:  4
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   45     0  E >   INIT_FCALL_BY_NAME                                       'do_action'
          1        SEND_VAL_EX                                              'activate_wp_head'
          2        DO_FCALL                                      0          
   46     3      > RETURN                                                   null

End of function do_activate_header

Function wpmu_activate_stylesheet:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/F1utG
function name:  wpmu_activate_stylesheet
number of ops:  2
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   56     0  E >   ECHO                                                     '%09%3Cstyle+type%3D%22text%2Fcss%22%3E%0A%09%09form+%7B+margin-top%3A+2em%3B+%7D%0A%09%09%23submit%2C+%23key+%7B+width%3A+90%25%3B+font-size%3A+24px%3B+%7D%0A%09%09%23language+%7B+margin-top%3A+.5em%3B+%7D%0A%09%09.error+%7B+background%3A+%23f66%3B+%7D%0A%09%09span.h3+%7B+padding%3A+0+8px%3B+font-size%3A+1.3em%3B+font-family%3A+%22Lucida+Grande%22%2C+Verdana%2C+Arial%2C+%22Bitstream+Vera+Sans%22%2C+sans-serif%3B+font-weight%3A+bold%3B+color%3A+%23333%3B+%7D%0A%09%3C%2Fstyle%3E%0A%09'
   64     1      > RETURN                                                   null

End of function wpmu_activate_stylesheet

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
272.39 ms | 1420 KiB | 20 Q