3v4l.org

run code in 300+ PHP versions simultaneously
<?php get_header(); ?> <?php $sidebar_exists = true; $container_class = ''; $timeline_icon_class = ''; $post_class = ''; $content_class = ''; $sidebar_exists = false; $sidebar_left = ''; $double_sidebars = false; $sidebar_1 = Avada()->settings->get( 'search_sidebar' ); $sidebar_2 = Avada()->settings->get( 'search_sidebar_2' ); if( $sidebar_1 != 'None' && $sidebar_2 != 'None' ) { $double_sidebars = true; } if( $sidebar_1 != 'None' ) { $sidebar_exists = true; } else { $sidebar_exists = false; } if( ! $sidebar_exists ) { $content_css = 'width:100%'; $sidebar_css = 'display:none'; $content_class= 'full-width'; $sidebar_exists = false; } elseif(Avada()->settings->get( 'search_sidebar_position' ) == 'Left') { $content_css = 'float:right;'; $sidebar_css = 'float:left;'; $sidebar_left = 1; } elseif(Avada()->settings->get( 'search_sidebar_position' ) == 'Right') { $content_css = 'float:left;'; $sidebar_css = 'float:right;'; $sidebar_left = 2; } if($double_sidebars == true) { $content_css = 'float:left;'; $sidebar_css = 'float:left;'; $sidebar_2_css = 'float:left;'; } else { $sidebar_left = 1; } ?> <div id="content" class="<?php echo $content_class; ?>" style="<?php echo $content_css; ?>"> <?php if ( have_posts() && strlen( trim(get_search_query()) ) != 0 ) : ?> <?php if ( Avada()->settings->get( 'search_new_search_position' ) == 'bottom' ) { get_template_part( 'templates/blog', 'layout' ); ?> <div class="fusion-clearfix"></div> <?php } ?> <?php if ( Avada()->settings->get( 'search_new_search_position' ) != 'hidden' ) : ?> <div class="search-page-search-form search-page-search-form-<?php echo Avada()->settings->get( 'search_new_search_position' ); ?>"> <?php // Render the post title echo avada_render_post_title( 0, FALSE, __( 'Nog iets opzoeken?', 'Avada' ) ); ?> <p><?php echo __('Als u niet gevonden heeft wat u zocht, probeer het gerust opnieuw!', 'Avada'); ?></p> <form class="searchform seach-form" role="search" method="get" action="<?php echo home_url( '/' ); ?>"> <div class="search-table"> <div class="search-field"> <input type="text" value="" name="s" class="s" placeholder="<?php _e( 'Zoeken...', 'Avada' ); ?>"/> </div> <div class="search-button"> <input type="submit" class="searchsubmit" value="&#xf002;" /> </div> </div> </form> </div> <?php endif; ?> <?php if ( Avada()->settings->get( 'search_new_search_position' ) == 'top' || Avada()->settings->get( 'search_new_search_position' ) == 'hidden' ) { get_template_part( 'templates/blog', 'layout' ); } ?> <?php else: ?> <div class="post-content"> <?php $title = __( 'We konden niets vinden!', 'Avada' ); echo do_shortcode( sprintf( '[title size="2" content_align="left" style_type="default"]%s[/title]', $title ) ); ?> <div class="error-page"> <?php // First column echo do_shortcode( sprintf( '[one_third last="no" spacing="yes"]<h1 class="oops %s">%s</h1>[/one_third]', ( $sidebar_css != 'display:none') ? 'sidebar-oops' : '', __( 'Oeps!', 'Avada' ) ) ); // Second column $subheading = sprintf( '<h3>%s</h3>', __( 'Hier zijn een aantal bruikbare links:', 'Avada' ) ); $iconcolor = strtolower( Avada()->settings->get( 'checklist_icons_color' ) ); $list_css = sprintf( '<style type="text/css">.post-content #checklist-1 li:before{color:%s !important;}.rtl .post-content #checklist-1 li:after{color:%s !important;}</style>', $iconcolor, $iconcolor ); $useful_links_menu = wp_nav_menu( array( 'theme_location' => '404_pages', 'depth' => 1, 'container' => false, 'menu_id' => 'checklist-1', 'menu_class' => 'list-icon circle-yes list-icon-arrow', 'echo' => 0 ) ); echo do_shortcode( sprintf( '[one_third last="no" spacing="yes" class="useful-links"]%s%s%s[/one_third]', $subheading, $list_css, $useful_links_menu ) ); // Third column $subheading = sprintf( '<h3>%s</h3>', __( 'Probeer opnieuw!', 'Avada' ) ); $info_text = sprintf( '<p>%s</p>', __( 'U kunt hier uw zoekopdracht aanpassen:', 'Avada' ) ); $search_form = get_search_form( FALSE ); echo do_shortcode( sprintf( '[one_third last="yes" spacing="yes"]%s%s%s[/one_third]', $subheading, $info_text, $search_form ) ); ?> </div> </div> <?php endif; ?> </div> <?php if( $sidebar_exists == true ): ?> <?php wp_reset_query(); ?> <div id="sidebar" class="sidebar" style="<?php echo $sidebar_css; ?>"> <?php if($sidebar_left == 1) { generated_dynamic_sidebar($sidebar_1); } if($sidebar_left == 2) { generated_dynamic_sidebar_2($sidebar_2); } ?> </div> <?php if( $double_sidebars == true ): ?> <div id="sidebar-2" class="sidebar" style="<?php echo $sidebar_2_css; ?>"> <?php if($sidebar_left == 1) { generated_dynamic_sidebar_2($sidebar_2); } if($sidebar_left == 2) { generated_dynamic_sidebar($sidebar_1); } ?> </div> <?php endif; ?> <?php endif; ?> <?php get_footer(); // Omit closing PHP tag to avoid "Headers already sent" issues.
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 46) Position 1 = 27, Position 2 = 29
Branch analysis from position: 27
2 jumps found. (Code = 43) Position 1 = 30, Position 2 = 31
Branch analysis from position: 30
2 jumps found. (Code = 43) Position 1 = 33, Position 2 = 35
Branch analysis from position: 33
1 jumps found. (Code = 42) Position 1 = 36
Branch analysis from position: 36
2 jumps found. (Code = 43) Position 1 = 38, Position 2 = 43
Branch analysis from position: 38
1 jumps found. (Code = 42) Position 1 = 66
Branch analysis from position: 66
2 jumps found. (Code = 43) Position 1 = 68, Position 2 = 72
Branch analysis from position: 68
1 jumps found. (Code = 42) Position 1 = 73
Branch analysis from position: 73
2 jumps found. (Code = 46) Position 1 = 81, Position 2 = 89
Branch analysis from position: 81
2 jumps found. (Code = 43) Position 1 = 90, Position 2 = 173
Branch analysis from position: 90
2 jumps found. (Code = 43) Position 1 = 99, Position 2 = 104
Branch analysis from position: 99
2 jumps found. (Code = 43) Position 1 = 113, Position 2 = 149
Branch analysis from position: 113
2 jumps found. (Code = 47) Position 1 = 158, Position 2 = 166
Branch analysis from position: 158
2 jumps found. (Code = 43) Position 1 = 167, Position 2 = 171
Branch analysis from position: 167
1 jumps found. (Code = 42) Position 1 = 278
Branch analysis from position: 278
2 jumps found. (Code = 43) Position 1 = 281, Position 2 = 315
Branch analysis from position: 281
2 jumps found. (Code = 43) Position 1 = 289, Position 2 = 292
Branch analysis from position: 289
2 jumps found. (Code = 43) Position 1 = 294, Position 2 = 297
Branch analysis from position: 294
2 jumps found. (Code = 43) Position 1 = 300, Position 2 = 314
Branch analysis from position: 300
2 jumps found. (Code = 43) Position 1 = 305, Position 2 = 308
Branch analysis from position: 305
2 jumps found. (Code = 43) Position 1 = 310, Position 2 = 313
Branch analysis from position: 310
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 313
Branch analysis from position: 308
Branch analysis from position: 314
Branch analysis from position: 297
Branch analysis from position: 292
Branch analysis from position: 315
Branch analysis from position: 171
Branch analysis from position: 166
Branch analysis from position: 149
Branch analysis from position: 104
Branch analysis from position: 173
2 jumps found. (Code = 43) Position 1 = 193, Position 2 = 195
Branch analysis from position: 193
1 jumps found. (Code = 42) Position 1 = 196
Branch analysis from position: 196
2 jumps found. (Code = 43) Position 1 = 281, Position 2 = 315
Branch analysis from position: 281
Branch analysis from position: 315
Branch analysis from position: 195
2 jumps found. (Code = 43) Position 1 = 281, Position 2 = 315
Branch analysis from position: 281
Branch analysis from position: 315
Branch analysis from position: 89
Branch analysis from position: 72
2 jumps found. (Code = 46) Position 1 = 81, Position 2 = 89
Branch analysis from position: 81
Branch analysis from position: 89
Branch analysis from position: 43
2 jumps found. (Code = 43) Position 1 = 51, Position 2 = 55
Branch analysis from position: 51
1 jumps found. (Code = 42) Position 1 = 66
Branch analysis from position: 66
Branch analysis from position: 55
2 jumps found. (Code = 43) Position 1 = 63, Position 2 = 66
Branch analysis from position: 63
2 jumps found. (Code = 43) Position 1 = 68, Position 2 = 72
Branch analysis from position: 68
Branch analysis from position: 72
Branch analysis from position: 66
Branch analysis from position: 35
2 jumps found. (Code = 43) Position 1 = 38, Position 2 = 43
Branch analysis from position: 38
Branch analysis from position: 43
Branch analysis from position: 31
Branch analysis from position: 29
filename:       /in/5GP74
function name:  (null)
number of ops:  318
compiled vars:  !0 = $sidebar_exists, !1 = $container_class, !2 = $timeline_icon_class, !3 = $post_class, !4 = $content_class, !5 = $sidebar_left, !6 = $double_sidebars, !7 = $sidebar_1, !8 = $sidebar_2, !9 = $content_css, !10 = $sidebar_css, !11 = $sidebar_2_css, !12 = $title, !13 = $subheading, !14 = $iconcolor, !15 = $list_css, !16 = $useful_links_menu, !17 = $info_text, !18 = $search_form
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    1     0  E >   INIT_FCALL_BY_NAME                                       'get_header'
          1        DO_FCALL                                      0          
    2     2        ECHO                                                     '%09'
    3     3        ASSIGN                                                   !0, <true>
    4     4        ASSIGN                                                   !1, ''
    5     5        ASSIGN                                                   !2, ''
    6     6        ASSIGN                                                   !3, ''
    7     7        ASSIGN                                                   !4, ''
    8     8        ASSIGN                                                   !0, <false>
    9     9        ASSIGN                                                   !5, ''
   10    10        ASSIGN                                                   !6, <false>
   12    11        INIT_FCALL_BY_NAME                                       'Avada'
         12        DO_FCALL                                      0  $28     
         13        FETCH_OBJ_R                                      ~29     $28, 'settings'
         14        INIT_METHOD_CALL                                         ~29, 'get'
         15        SEND_VAL_EX                                              'search_sidebar'
         16        DO_FCALL                                      0  $30     
         17        ASSIGN                                                   !7, $30
   13    18        INIT_FCALL_BY_NAME                                       'Avada'
         19        DO_FCALL                                      0  $32     
         20        FETCH_OBJ_R                                      ~33     $32, 'settings'
         21        INIT_METHOD_CALL                                         ~33, 'get'
         22        SEND_VAL_EX                                              'search_sidebar_2'
         23        DO_FCALL                                      0  $34     
         24        ASSIGN                                                   !8, $34
   14    25        IS_NOT_EQUAL                                     ~36     !7, 'None'
         26      > JMPZ_EX                                          ~36     ~36, ->29
         27    >   IS_NOT_EQUAL                                     ~37     !8, 'None'
         28        BOOL                                             ~36     ~37
         29    > > JMPZ                                                     ~36, ->31
   15    30    >   ASSIGN                                                   !6, <true>
   18    31    >   IS_NOT_EQUAL                                             !7, 'None'
         32      > JMPZ                                                     ~39, ->35
   19    33    >   ASSIGN                                                   !0, <true>
         34      > JMP                                                      ->36
   21    35    >   ASSIGN                                                   !0, <false>
   24    36    >   BOOL_NOT                                         ~42     !0
         37      > JMPZ                                                     ~42, ->43
   25    38    >   ASSIGN                                                   !9, 'width%3A100%25'
   26    39        ASSIGN                                                   !10, 'display%3Anone'
   27    40        ASSIGN                                                   !4, 'full-width'
   28    41        ASSIGN                                                   !0, <false>
         42      > JMP                                                      ->66
   29    43    >   INIT_FCALL_BY_NAME                                       'Avada'
         44        DO_FCALL                                      0  $47     
         45        FETCH_OBJ_R                                      ~48     $47, 'settings'
         46        INIT_METHOD_CALL                                         ~48, 'get'
         47        SEND_VAL_EX                                              'search_sidebar_position'
         48        DO_FCALL                                      0  $49     
         49        IS_EQUAL                                                 $49, 'Left'
         50      > JMPZ                                                     ~50, ->55
   30    51    >   ASSIGN                                                   !9, 'float%3Aright%3B'
   31    52        ASSIGN                                                   !10, 'float%3Aleft%3B'
   32    53        ASSIGN                                                   !5, 1
         54      > JMP                                                      ->66
   33    55    >   INIT_FCALL_BY_NAME                                       'Avada'
         56        DO_FCALL                                      0  $54     
         57        FETCH_OBJ_R                                      ~55     $54, 'settings'
         58        INIT_METHOD_CALL                                         ~55, 'get'
         59        SEND_VAL_EX                                              'search_sidebar_position'
         60        DO_FCALL                                      0  $56     
         61        IS_EQUAL                                                 $56, 'Right'
         62      > JMPZ                                                     ~57, ->66
   34    63    >   ASSIGN                                                   !9, 'float%3Aleft%3B'
   35    64        ASSIGN                                                   !10, 'float%3Aright%3B'
   36    65        ASSIGN                                                   !5, 2
   39    66    >   BOOL                                             ~61     !6
         67      > JMPZ                                                     ~61, ->72
   40    68    >   ASSIGN                                                   !9, 'float%3Aleft%3B'
   41    69        ASSIGN                                                   !10, 'float%3Aleft%3B'
   42    70        ASSIGN                                                   !11, 'float%3Aleft%3B'
         71      > JMP                                                      ->73
   44    72    >   ASSIGN                                                   !5, 1
   47    73    >   ECHO                                                     '%09%3Cdiv+id%3D%22content%22+class%3D%22'
         74        ECHO                                                     !4
         75        ECHO                                                     '%22+style%3D%22'
         76        ECHO                                                     !9
         77        ECHO                                                     '%22%3E%0A%09%09'
   48    78        INIT_FCALL_BY_NAME                                       'have_posts'
         79        DO_FCALL                                      0  $66     
         80      > JMPZ_EX                                          ~67     $66, ->89
         81    >   INIT_FCALL                                               'trim'
         82        INIT_FCALL_BY_NAME                                       'get_search_query'
         83        DO_FCALL                                      0  $68     
         84        SEND_VAR                                                 $68
         85        DO_ICALL                                         $69     
         86        STRLEN                                           ~70     $69
         87        IS_NOT_EQUAL                                     ~71     ~70, 0
         88        BOOL                                             ~67     ~71
         89    > > JMPZ                                                     ~67, ->173
   49    90    >   ECHO                                                     '%09%09%0A%09%09'
   51    91        INIT_FCALL_BY_NAME                                       'Avada'
         92        DO_FCALL                                      0  $72     
         93        FETCH_OBJ_R                                      ~73     $72, 'settings'
         94        INIT_METHOD_CALL                                         ~73, 'get'
         95        SEND_VAL_EX                                              'search_new_search_position'
         96        DO_FCALL                                      0  $74     
         97        IS_EQUAL                                                 $74, 'bottom'
         98      > JMPZ                                                     ~75, ->104
   52    99    >   INIT_FCALL_BY_NAME                                       'get_template_part'
        100        SEND_VAL_EX                                              'templates%2Fblog'
        101        SEND_VAL_EX                                              'layout'
        102        DO_FCALL                                      0          
   54   103        ECHO                                                     '%09%09%09%3Cdiv+class%3D%22fusion-clearfix%22%3E%3C%2Fdiv%3E%0A%09%09'
   58   104    >   ECHO                                                     '%09%09%0A%09%09'
   59   105        INIT_FCALL_BY_NAME                                       'Avada'
        106        DO_FCALL                                      0  $77     
        107        FETCH_OBJ_R                                      ~78     $77, 'settings'
        108        INIT_METHOD_CALL                                         ~78, 'get'
        109        SEND_VAL_EX                                              'search_new_search_position'
        110        DO_FCALL                                      0  $79     
        111        IS_NOT_EQUAL                                             $79, 'hidden'
        112      > JMPZ                                                     ~80, ->149
   60   113    >   ECHO                                                     '%09%09%3Cdiv+class%3D%22search-page-search-form+search-page-search-form-'
        114        INIT_FCALL_BY_NAME                                       'Avada'
        115        DO_FCALL                                      0  $81     
        116        FETCH_OBJ_R                                      ~82     $81, 'settings'
        117        INIT_METHOD_CALL                                         ~82, 'get'
        118        SEND_VAL_EX                                              'search_new_search_position'
        119        DO_FCALL                                      0  $83     
        120        ECHO                                                     $83
        121        ECHO                                                     '%22%3E%0A%09%09%09'
   63   122        INIT_FCALL_BY_NAME                                       'avada_render_post_title'
        123        SEND_VAL_EX                                              0
        124        SEND_VAL_EX                                              <false>
        125        INIT_FCALL_BY_NAME                                       '__'
        126        SEND_VAL_EX                                              'Nog+iets+opzoeken%3F'
        127        SEND_VAL_EX                                              'Avada'
        128        DO_FCALL                                      0  $84     
        129        SEND_VAR_NO_REF_EX                                       $84
        130        DO_FCALL                                      0  $85     
        131        ECHO                                                     $85
   64   132        ECHO                                                     '%09%09%09%3Cp%3E'
        133        INIT_FCALL_BY_NAME                                       '__'
        134        SEND_VAL_EX                                              'Als+u+niet+gevonden+heeft+wat+u+zocht%2C+probeer+het+gerust+opnieuw%21'
        135        SEND_VAL_EX                                              'Avada'
        136        DO_FCALL                                      0  $86     
        137        ECHO                                                     $86
        138        ECHO                                                     '%3C%2Fp%3E%0A%09%09%09%3Cform+class%3D%22searchform+seach-form%22+role%3D%22search%22+method%3D%22get%22+action%3D%22'
   65   139        INIT_FCALL_BY_NAME                                       'home_url'
        140        SEND_VAL_EX                                              '%2F'
        141        DO_FCALL                                      0  $87     
        142        ECHO                                                     $87
        143        ECHO                                                     '%22%3E%0A%09%09%09%09%3Cdiv+class%3D%22search-table%22%3E%0A%09%09%09%09%09%3Cdiv+class%3D%22search-field%22%3E%0A%09%09%09%09%09%09%3Cinput+type%3D%22text%22+value%3D%22%22+name%3D%22s%22+class%3D%22s%22+placeholder%3D%22'
   68   144        INIT_FCALL_BY_NAME                                       '_e'
        145        SEND_VAL_EX                                              'Zoeken...'
        146        SEND_VAL_EX                                              'Avada'
        147        DO_FCALL                                      0          
        148        ECHO                                                     '%22%2F%3E%0A%09%09%09%09%09%3C%2Fdiv%3E%0A%09%09%09%09%09%3Cdiv+class%3D%22search-button%22%3E%0A%09%09%09%09%09%09%3Cinput+type%3D%22submit%22+class%3D%22searchsubmit%22+value%3D%22%26%23xf002%3B%22+%2F%3E%0A%09%09%09%09%09%3C%2Fdiv%3E%0A%09%09%09%09%3C%2Fdiv%3E%0A%09%09%09%3C%2Fform%3E%0A%09%09%3C%2Fdiv%3E%0A%09%09'
   77   149    >   ECHO                                                     '%09%09'
   78   150        INIT_FCALL_BY_NAME                                       'Avada'
        151        DO_FCALL                                      0  $89     
        152        FETCH_OBJ_R                                      ~90     $89, 'settings'
        153        INIT_METHOD_CALL                                         ~90, 'get'
        154        SEND_VAL_EX                                              'search_new_search_position'
        155        DO_FCALL                                      0  $91     
        156        IS_EQUAL                                         ~92     $91, 'top'
        157      > JMPNZ_EX                                         ~92     ~92, ->166
        158    >   INIT_FCALL_BY_NAME                                       'Avada'
        159        DO_FCALL                                      0  $93     
        160        FETCH_OBJ_R                                      ~94     $93, 'settings'
        161        INIT_METHOD_CALL                                         ~94, 'get'
        162        SEND_VAL_EX                                              'search_new_search_position'
        163        DO_FCALL                                      0  $95     
        164        IS_EQUAL                                         ~96     $95, 'hidden'
        165        BOOL                                             ~92     ~96
        166    > > JMPZ                                                     ~92, ->171
   79   167    >   INIT_FCALL_BY_NAME                                       'get_template_part'
        168        SEND_VAL_EX                                              'templates%2Fblog'
        169        SEND_VAL_EX                                              'layout'
        170        DO_FCALL                                      0          
   82   171    >   ECHO                                                     '%09'
        172      > JMP                                                      ->278
   83   173    >   ECHO                                                     '%09%3Cdiv+class%3D%22post-content%22%3E%0A%09%09'
   85   174        INIT_FCALL_BY_NAME                                       '__'
        175        SEND_VAL_EX                                              'We+konden+niets+vinden%21'
        176        SEND_VAL_EX                                              'Avada'
        177        DO_FCALL                                      0  $98     
        178        ASSIGN                                                   !12, $98
   86   179        INIT_FCALL_BY_NAME                                       'do_shortcode'
        180        INIT_FCALL                                               'sprintf'
        181        SEND_VAL                                                 '%5Btitle+size%3D%222%22+content_align%3D%22left%22+style_type%3D%22default%22%5D%25s%5B%2Ftitle%5D'
        182        SEND_VAR                                                 !12
        183        DO_ICALL                                         $100    
        184        SEND_VAR_NO_REF_EX                                       $100
        185        DO_FCALL                                      0  $101    
        186        ECHO                                                     $101
   88   187        ECHO                                                     '%09%09%3Cdiv+class%3D%22error-page%22%3E%0A%09%09%09'
   91   188        INIT_FCALL_BY_NAME                                       'do_shortcode'
        189        INIT_FCALL                                               'sprintf'
        190        SEND_VAL                                                 '%5Bone_third+last%3D%22no%22+spacing%3D%22yes%22%5D%3Ch1+class%3D%22oops+%25s%22%3E%25s%3C%2Fh1%3E%5B%2Fone_third%5D'
        191        IS_NOT_EQUAL                                             !10, 'display%3Anone'
        192      > JMPZ                                                     ~102, ->195
        193    >   QM_ASSIGN                                        ~103    'sidebar-oops'
        194      > JMP                                                      ->196
        195    >   QM_ASSIGN                                        ~103    ''
        196    >   SEND_VAL                                                 ~103
        197        INIT_FCALL_BY_NAME                                       '__'
        198        SEND_VAL_EX                                              'Oeps%21'
        199        SEND_VAL_EX                                              'Avada'
        200        DO_FCALL                                      0  $104    
        201        SEND_VAR                                                 $104
        202        DO_ICALL                                         $105    
        203        SEND_VAR_NO_REF_EX                                       $105
        204        DO_FCALL                                      0  $106    
        205        ECHO                                                     $106
   94   206        INIT_FCALL                                               'sprintf'
        207        SEND_VAL                                                 '%3Ch3%3E%25s%3C%2Fh3%3E'
        208        INIT_FCALL_BY_NAME                                       '__'
        209        SEND_VAL_EX                                              'Hier+zijn+een+aantal+bruikbare+links%3A'
        210        SEND_VAL_EX                                              'Avada'
        211        DO_FCALL                                      0  $107    
        212        SEND_VAR                                                 $107
        213        DO_ICALL                                         $108    
        214        ASSIGN                                                   !13, $108
   95   215        INIT_FCALL                                               'strtolower'
        216        INIT_FCALL_BY_NAME                                       'Avada'
        217        DO_FCALL                                      0  $110    
        218        FETCH_OBJ_R                                      ~111    $110, 'settings'
        219        INIT_METHOD_CALL                                         ~111, 'get'
        220        SEND_VAL_EX                                              'checklist_icons_color'
        221        DO_FCALL                                      0  $112    
        222        SEND_VAR                                                 $112
        223        DO_ICALL                                         $113    
        224        ASSIGN                                                   !14, $113
   96   225        INIT_FCALL                                               'sprintf'
        226        SEND_VAL                                                 '%3Cstyle+type%3D%22text%2Fcss%22%3E.post-content+%23checklist-1+li%3Abefore%7Bcolor%3A%25s+%21important%3B%7D.rtl+.post-content+%23checklist-1+li%3Aafter%7Bcolor%3A%25s+%21important%3B%7D%3C%2Fstyle%3E'
        227        SEND_VAR                                                 !14
        228        SEND_VAR                                                 !14
        229        DO_ICALL                                         $115    
        230        ASSIGN                                                   !15, $115
   97   231        INIT_FCALL_BY_NAME                                       'wp_nav_menu'
        232        SEND_VAL_EX                                              <array>
        233        DO_FCALL                                      0  $117    
        234        ASSIGN                                                   !16, $117
   99   235        INIT_FCALL_BY_NAME                                       'do_shortcode'
        236        INIT_FCALL                                               'sprintf'
        237        SEND_VAL                                                 '%5Bone_third+last%3D%22no%22+spacing%3D%22yes%22+class%3D%22useful-links%22%5D%25s%25s%25s%5B%2Fone_third%5D'
        238        SEND_VAR                                                 !13
        239        SEND_VAR                                                 !15
        240        SEND_VAR                                                 !16
        241        DO_ICALL                                         $119    
        242        SEND_VAR_NO_REF_EX                                       $119
        243        DO_FCALL                                      0  $120    
        244        ECHO                                                     $120
  103   245        INIT_FCALL                                               'sprintf'
        246        SEND_VAL                                                 '%3Ch3%3E%25s%3C%2Fh3%3E'
        247        INIT_FCALL_BY_NAME                                       '__'
        248        SEND_VAL_EX                                              'Probeer+opnieuw%21'
        249        SEND_VAL_EX                                              'Avada'
        250        DO_FCALL                                      0  $121    
        251        SEND_VAR                                                 $121
        252        DO_ICALL                                         $122    
        253        ASSIGN                                                   !13, $122
  104   254        INIT_FCALL                                               'sprintf'
        255        SEND_VAL                                                 '%3Cp%3E%25s%3C%2Fp%3E'
        256        INIT_FCALL_BY_NAME                                       '__'
        257        SEND_VAL_EX                                              'U+kunt+hier+uw+zoekopdracht+aanpassen%3A'
        258        SEND_VAL_EX                                              'Avada'
        259        DO_FCALL                                      0  $124    
        260        SEND_VAR                                                 $124
        261        DO_ICALL                                         $125    
        262        ASSIGN                                                   !17, $125
  105   263        INIT_FCALL_BY_NAME                                       'get_search_form'
        264        SEND_VAL_EX                                              <false>
        265        DO_FCALL                                      0  $127    
        266        ASSIGN                                                   !18, $127
  107   267        INIT_FCALL_BY_NAME                                       'do_shortcode'
        268        INIT_FCALL                                               'sprintf'
        269        SEND_VAL                                                 '%5Bone_third+last%3D%22yes%22+spacing%3D%22yes%22%5D%25s%25s%25s%5B%2Fone_third%5D'
        270        SEND_VAR                                                 !13
        271        SEND_VAR                                                 !17
        272        SEND_VAR                                                 !18
        273        DO_ICALL                                         $129    
        274        SEND_VAR_NO_REF_EX                                       $129
        275        DO_FCALL                                      0  $130    
        276        ECHO                                                     $130
  109   277        ECHO                                                     '%09%09%3C%2Fdiv%3E%0A%09%3C%2Fdiv%3E%0A%09'
  112   278    >   ECHO                                                     '%09%3C%2Fdiv%3E%0A%09'
  113   279        BOOL                                             ~131    !0
        280      > JMPZ                                                     ~131, ->315
  114   281    >   ECHO                                                     '%09'
        282        INIT_FCALL_BY_NAME                                       'wp_reset_query'
        283        DO_FCALL                                      0          
  115   284        ECHO                                                     '%09%3Cdiv+id%3D%22sidebar%22+class%3D%22sidebar%22+style%3D%22'
        285        ECHO                                                     !10
        286        ECHO                                                     '%22%3E%0A%09%09'
  117   287        IS_EQUAL                                                 !5, 1
        288      > JMPZ                                                     ~133, ->292
  118   289    >   INIT_FCALL_BY_NAME                                       'generated_dynamic_sidebar'
        290        SEND_VAR_EX                                              !7
        291        DO_FCALL                                      0          
  120   292    >   IS_EQUAL                                                 !5, 2
        293      > JMPZ                                                     ~135, ->297
  121   294    >   INIT_FCALL_BY_NAME                                       'generated_dynamic_sidebar_2'
        295        SEND_VAR_EX                                              !8
        296        DO_FCALL                                      0          
  124   297    >   ECHO                                                     '%09%3C%2Fdiv%3E%0A%09'
  125   298        BOOL                                             ~137    !6
        299      > JMPZ                                                     ~137, ->314
  126   300    >   ECHO                                                     '%09%3Cdiv+id%3D%22sidebar-2%22+class%3D%22sidebar%22+style%3D%22'
        301        ECHO                                                     !11
        302        ECHO                                                     '%22%3E%0A%09%09'
  128   303        IS_EQUAL                                                 !5, 1
        304      > JMPZ                                                     ~138, ->308
  129   305    >   INIT_FCALL_BY_NAME                                       'generated_dynamic_sidebar_2'
        306        SEND_VAR_EX                                              !8
        307        DO_FCALL                                      0          
  131   308    >   IS_EQUAL                                                 !5, 2
        309      > JMPZ                                                     ~140, ->313
  132   310    >   INIT_FCALL_BY_NAME                                       'generated_dynamic_sidebar'
        3

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
171.66 ms | 1428 KiB | 19 Q