3v4l.org

run code in 300+ PHP versions simultaneously
<?php /* Template Name: Dashboard */ if (!is_user_logged_in()) { // je vérifie si je suis connecté wp_redirect( home_url() . "/connexion" ); // si pas je redirige vers la page login exit; } get_header(); include_once 'includes/randomName.php'; ?> <body> <nav class="navbar navbar-expand-lg position-absolute w-100" style="z-index: 10;"> <div class="container"> <a href="<?php echo esc_url(get_permalink(get_page_by_path('/dashboard'))); ?>" class="navbar-brand"> <img src="<?php echo get_template_directory_uri(); ?>/logo/Logo.svg" alt="Logo" width="70" height="58"> </a> <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#menu"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="menu"> <ul class="navbar-nav me-auto"> <li class="nav-item"> <a href="<?php echo esc_url(get_permalink(get_page_by_path('/jeux-video-logged-in'))); ?>" class="nav-link active">Jeux vidéo</a> </li> <li class="nav-item"> <a href="<?php echo esc_url(get_permalink(get_page_by_path('/consoles-logged-in'))); ?>" class="nav-link active">Consoles</a> </li> <li class="nav-item"> <a href="<?php echo esc_url(get_permalink(get_page_by_path('/qui-sommes-nous-logged-in'))); ?>" class="nav-link active">Qui sommes-nous</a> </li> </ul> <div class="ms-auto d-flex align-items-center"> <a class="text-white" href="<?php echo esc_url(get_permalink(get_page_by_path('/profil'))); ?>" class="d-flex align-items-center me-3"> <i class="bi bi-person-fill me-3 footer-icon"></i></a> <a class="text-white" href="<?php echo esc_url(get_permalink(get_page_by_path('/chat-box'))); ?>" class="d-flex align-items-center me-4"> <i class="bi bi-chat-fill footer-icon me-3"></i></a> <?php if (is_user_logged_in()):?> <a href="<?php echo wp_logout_url();?>" class="custom-button">Déconnexion</a> <?php endif; ?> <a href="<?php echo esc_url(get_permalink(get_page_by_path('/creer-une-annonce'))); ?>" class="custom-button">Créer une annonce</a> </div> </div> </div> </nav> <div class="position-relative"> <img src="<?php echo get_template_directory_uri(); ?>/images/hero.png" alt="gensquijouent" class="img-fluid w-100" style="border-radius: 0;"> <div class="position-absolute top-50 start-50 translate-middle text-center text-white p-md-4"> <h1 class="display-3 display-md-1"><b>BACK2PIXELS</b></h1> <p class="lead lead-md">Le site où vos jeux et consoles trouvent une nouvelle vie : échangez facilement et connectez-vous avec des passionnés comme vous !</p> <p class="lead lead-md"><b>T’es prêt ? À toi de jouer !</b></p> <a href="<?php echo esc_url(get_permalink(get_page_by_path('/creer-une-annonce'))); ?>" class="custom-button">CRÉER UNE ANNONCE</a> </div> </div> <div class="container mt-5"> <div class="row gy-3"> <div class="col-md-6"> <div class="card" style="max-width: 400px; margin: 0 auto;"> <img src="<?php echo get_template_directory_uri(); ?>/images/JEUX.png" class="card-img-top" alt="explorerjeux"> <div class="card-body"> <h5 class="card-title">DÉCOUVRE LES JEUX VIDÉO</h5> <a href="<?php echo esc_url(get_permalink(get_page_by_path('/jeux-video-logged-in'))); ?>" class="custom-button">EXPLORER</a> </div> </div> </div> <div class="col-md-6"> <div class="card" style="max-width: 400px; margin: 0 auto;"> <img src="<?php echo get_template_directory_uri(); ?>/images/CONSOLES.png" class="card-img-top" alt="explorerconsoles"> <div class="card-body"> <h5 class="card-title">DÉCOUVRE LES CONSOLES</h5> <a href="<?php echo esc_url(get_permalink(get_page_by_path('/consoles-logged-in'))); ?>" class="custom-button">EXPLORER</a> </div> </div> </div> </div> </div> <div class="container"> <div class="row gy-5 mb-5"> <div class="col-6 col-md-3"> <h1><br><b>FIL D'ACTUALITÉ</b></br></h1> <hr style="border-top: 6px solid #7058A8; margin: 5px 0;"> </div> </div> </div> </body> <?php $games = new WP_Query([ 'post_type' => 'games', 'post_status' => 'publish' ]); if ($games->have_posts()) : $i = 1; ?> <div class="container my-5"> <div class="row gy-5"> <?php while ($games->have_posts()) : $games->the_post(); ?> <div class="col-6 col-md-3"> <div class="card" style="max-width: 250px; margin: 0 auto;"> <div class="d-flex align-items-center p-2"> <?php $name = randomName(); ?> <img src="<?php echo 'https://robohash.org/' . $name; ?>" alt="Avatar personnalisé" class="img-thumbnail" style="width: 40px; height: 40px;" /> <span class="ms-2"><?php echo $name; ?></span> </div> <?php $custom_link = get_field('custom_link'); if ($custom_link) { if (strpos($custom_link, 'http') !== 0) { $custom_link = home_url($custom_link); } } else { $custom_link = get_permalink(); } ?> <a href="<?php echo esc_url($custom_link); ?>"> <?php the_post_thumbnail('medium', [ 'class' => 'card-img-top' ]); ?> </a> <div class="card-body"> <h5 class="card-title"><?php the_title(); ?></h5> <p><?php the_content(); ?></p> <a href="<?php echo esc_url(get_permalink(get_page_by_path('/chat-box'))); ?>" class="custom-button">MESSAGE</a> </div> </div> </div> <?php $i++; endwhile; ?> </div> </div> </div> <?php endif; ?> <?php $stations = new WP_Query([ 'post_type' => 'stations', 'post_status' => 'publish' ]); if ($stations->have_posts()) : $i = 1; ?> <div class="container"> <div class="row gy-5 mb-5"> <div class="container my-5"> <div class="row gy-5"> <?php while ($stations->have_posts()) : $stations->the_post(); ?> <div class="col-6 col-md-3"> <div class="card" style="max-width: 250px; margin: 0 auto;"> <div class="d-flex align-items-center p-2"> <?php $name = randomName(); ?> <img src="<?php echo 'https://robohash.org/' . $name; ?>" alt="Avatar personnalisé" class="img-thumbnail" style="width: 40px; height: 40px;" /> <span class="ms-2"><?php echo $name; ?></span> </div> <?php $custom_link = get_field('custom_link'); if ($custom_link) { if (strpos($custom_link, 'http') !== 0) { $custom_link = home_url($custom_link); } } else { $custom_link = get_permalink(); } ?> <a href="<?php echo esc_url($custom_link); ?>"> <?php the_post_thumbnail('medium', [ 'class' => 'card-img-top' ]); ?> </a> <div class="card-body"> <h5 class="card-title"><?php the_title(); ?></h5> <p><?php the_content(); ?></p> <a href="<?php echo esc_url(get_permalink(get_page_by_path('/chat-box'))); ?>" class="custom-button">MESSAGE</a> </div> </div> </div> <?php $i++; endwhile; ?> </div> </div> </div> </div> <?php endif; ?> <?php $user = wp_get_current_user(); ?> <?php get_footer(); ?>
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 4, Position 2 = 11
Branch analysis from position: 4
1 jumps found. (Code = 79) Position 1 = -2
Branch analysis from position: 11
2 jumps found. (Code = 43) Position 1 = 88, Position 2 = 93
Branch analysis from position: 88
2 jumps found. (Code = 43) Position 1 = 157, Position 2 = 224
Branch analysis from position: 157
1 jumps found. (Code = 42) Position 1 = 220
Branch analysis from position: 220
2 jumps found. (Code = 44) Position 1 = 223, Position 2 = 160
Branch analysis from position: 223
2 jumps found. (Code = 43) Position 1 = 232, Position 2 = 299
Branch analysis from position: 232
1 jumps found. (Code = 42) Position 1 = 295
Branch analysis from position: 295
2 jumps found. (Code = 44) Position 1 = 298, Position 2 = 235
Branch analysis from position: 298
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 235
2 jumps found. (Code = 43) Position 1 = 252, Position 2 = 263
Branch analysis from position: 252
2 jumps found. (Code = 43) Position 1 = 258, Position 2 = 262
Branch analysis from position: 258
1 jumps found. (Code = 42) Position 1 = 266
Branch analysis from position: 266
2 jumps found. (Code = 44) Position 1 = 298, Position 2 = 235
Branch analysis from position: 298
Branch analysis from position: 235
Branch analysis from position: 262
Branch analysis from position: 263
2 jumps found. (Code = 44) Position 1 = 298, Position 2 = 235
Branch analysis from position: 298
Branch analysis from position: 235
Branch analysis from position: 299
Branch analysis from position: 160
2 jumps found. (Code = 43) Position 1 = 177, Position 2 = 188
Branch analysis from position: 177
2 jumps found. (Code = 43) Position 1 = 183, Position 2 = 187
Branch analysis from position: 183
1 jumps found. (Code = 42) Position 1 = 191
Branch analysis from position: 191
2 jumps found. (Code = 44) Position 1 = 223, Position 2 = 160
Branch analysis from position: 223
Branch analysis from position: 160
Branch analysis from position: 187
Branch analysis from position: 188
2 jumps found. (Code = 44) Position 1 = 223, Position 2 = 160
Branch analysis from position: 223
Branch analysis from position: 160
Branch analysis from position: 224
Branch analysis from position: 93
filename:       /in/1GYU5
function name:  (null)
number of ops:  307
compiled vars:  !0 = $games, !1 = $i, !2 = $name, !3 = $custom_link, !4 = $stations, !5 = $user
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    4     0  E >   INIT_FCALL_BY_NAME                                       'is_user_logged_in'
          1        DO_FCALL                                      0  $6      
          2        BOOL_NOT                                         ~7      $6
          3      > JMPZ                                                     ~7, ->11
    5     4    >   INIT_FCALL_BY_NAME                                       'wp_redirect'
          5        INIT_FCALL_BY_NAME                                       'home_url'
          6        DO_FCALL                                      0  $8      
          7        CONCAT                                           ~9      $8, '%2Fconnexion'
          8        SEND_VAL_EX                                              ~9
          9        DO_FCALL                                      0          
    6    10      > EXIT                                                     
    9    11    >   INIT_FCALL_BY_NAME                                       'get_header'
         12        DO_FCALL                                      0          
   10    13        INCLUDE_OR_EVAL                                          'includes%2FrandomName.php', INCLUDE_ONCE
   13    14        ECHO                                                     '%0A%0A%0A%3Cbody%3E%0A++++%3Cnav+class%3D%22navbar+navbar-expand-lg+position-absolute+w-100%22+style%3D%22z-index%3A+10%3B%22%3E%0A++++++++%3Cdiv+class%3D%22container%22%3E%0A++++++++++++%3Ca+href%3D%22'
   19    15        INIT_FCALL_BY_NAME                                       'esc_url'
         16        INIT_FCALL_BY_NAME                                       'get_permalink'
         17        INIT_FCALL_BY_NAME                                       'get_page_by_path'
         18        SEND_VAL_EX                                              '%2Fdashboard'
         19        DO_FCALL                                      0  $13     
         20        SEND_VAR_NO_REF_EX                                       $13
         21        DO_FCALL                                      0  $14     
         22        SEND_VAR_NO_REF_EX                                       $14
         23        DO_FCALL                                      0  $15     
         24        ECHO                                                     $15
         25        ECHO                                                     '%22+class%3D%22navbar-brand%22%3E%0A++++++++++++++++%3Cimg+src%3D%22'
   20    26        INIT_FCALL_BY_NAME                                       'get_template_directory_uri'
         27        DO_FCALL                                      0  $16     
         28        ECHO                                                     $16
         29        ECHO                                                     '%2Flogo%2FLogo.svg%22+alt%3D%22Logo%22+width%3D%2270%22+height%3D%2258%22%3E%0A++++++++++++%3C%2Fa%3E%0A++++++++++++%3Cbutton+class%3D%22navbar-toggler%22+type%3D%22button%22+data-bs-toggle%3D%22collapse%22+data-bs-target%3D%22%23menu%22%3E%0A++++++++++++++++%3Cspan+class%3D%22navbar-toggler-icon%22%3E%3C%2Fspan%3E%0A++++++++++++%3C%2Fbutton%3E%0A++++++++++++%3Cdiv+class%3D%22collapse+navbar-collapse%22+id%3D%22menu%22%3E%0A++++++++++++++++%3Cul+class%3D%22navbar-nav+me-auto%22%3E%0A++++++++++++++++++++%3Cli+class%3D%22nav-item%22%3E%0A++++++++++++++++++++++++%3Ca+href%3D%22'
   28    30        INIT_FCALL_BY_NAME                                       'esc_url'
         31        INIT_FCALL_BY_NAME                                       'get_permalink'
         32        INIT_FCALL_BY_NAME                                       'get_page_by_path'
         33        SEND_VAL_EX                                              '%2Fjeux-video-logged-in'
         34        DO_FCALL                                      0  $17     
         35        SEND_VAR_NO_REF_EX                                       $17
         36        DO_FCALL                                      0  $18     
         37        SEND_VAR_NO_REF_EX                                       $18
         38        DO_FCALL                                      0  $19     
         39        ECHO                                                     $19
         40        ECHO                                                     '%22+class%3D%22nav-link+active%22%3EJeux+vid%C3%A9o%3C%2Fa%3E%0A++++++++++++++++++++%3C%2Fli%3E%0A++++++++++++++++++++%3Cli+class%3D%22nav-item%22%3E%0A++++++++++++++++++++++++%3Ca+href%3D%22'
   31    41        INIT_FCALL_BY_NAME                                       'esc_url'
         42        INIT_FCALL_BY_NAME                                       'get_permalink'
         43        INIT_FCALL_BY_NAME                                       'get_page_by_path'
         44        SEND_VAL_EX                                              '%2Fconsoles-logged-in'
         45        DO_FCALL                                      0  $20     
         46        SEND_VAR_NO_REF_EX                                       $20
         47        DO_FCALL                                      0  $21     
         48        SEND_VAR_NO_REF_EX                                       $21
         49        DO_FCALL                                      0  $22     
         50        ECHO                                                     $22
         51        ECHO                                                     '%22+class%3D%22nav-link+active%22%3EConsoles%3C%2Fa%3E%0A++++++++++++++++++++%3C%2Fli%3E%0A++++++++++++++++++++%3Cli+class%3D%22nav-item%22%3E%0A++++++++++++++++++++++++%3Ca+href%3D%22'
   34    52        INIT_FCALL_BY_NAME                                       'esc_url'
         53        INIT_FCALL_BY_NAME                                       'get_permalink'
         54        INIT_FCALL_BY_NAME                                       'get_page_by_path'
         55        SEND_VAL_EX                                              '%2Fqui-sommes-nous-logged-in'
         56        DO_FCALL                                      0  $23     
         57        SEND_VAR_NO_REF_EX                                       $23
         58        DO_FCALL                                      0  $24     
         59        SEND_VAR_NO_REF_EX                                       $24
         60        DO_FCALL                                      0  $25     
         61        ECHO                                                     $25
         62        ECHO                                                     '%22+class%3D%22nav-link+active%22%3EQui+sommes-nous%3C%2Fa%3E%0A++++++++++++++++++++%3C%2Fli%3E%0A++++++++++++++++%3C%2Ful%3E%0A++++++++++++++++%3Cdiv+class%3D%22ms-auto+d-flex+align-items-center%22%3E%0A++++++++++++++++++++%3Ca+class%3D%22text-white%22+href%3D%22'
   38    63        INIT_FCALL_BY_NAME                                       'esc_url'
         64        INIT_FCALL_BY_NAME                                       'get_permalink'
         65        INIT_FCALL_BY_NAME                                       'get_page_by_path'
         66        SEND_VAL_EX                                              '%2Fprofil'
         67        DO_FCALL                                      0  $26     
         68        SEND_VAR_NO_REF_EX                                       $26
         69        DO_FCALL                                      0  $27     
         70        SEND_VAR_NO_REF_EX                                       $27
         71        DO_FCALL                                      0  $28     
         72        ECHO                                                     $28
         73        ECHO                                                     '%22+class%3D%22d-flex+align-items-center+me-3%22%3E%0A++++++++++++++++++++%3Ci+class%3D%22bi+bi-person-fill+me-3+footer-icon%22%3E%3C%2Fi%3E%3C%2Fa%3E%0A++++++++++++++++++++%3Ca+class%3D%22text-white%22+href%3D%22'
   40    74        INIT_FCALL_BY_NAME                                       'esc_url'
         75        INIT_FCALL_BY_NAME                                       'get_permalink'
         76        INIT_FCALL_BY_NAME                                       'get_page_by_path'
         77        SEND_VAL_EX                                              '%2Fchat-box'
         78        DO_FCALL                                      0  $29     
         79        SEND_VAR_NO_REF_EX                                       $29
         80        DO_FCALL                                      0  $30     
         81        SEND_VAR_NO_REF_EX                                       $30
         82        DO_FCALL                                      0  $31     
         83        ECHO                                                     $31
         84        ECHO                                                     '%22+class%3D%22d-flex+align-items-center+me-4%22%3E%0A++++++++++++++++++++%3Ci+class%3D%22bi+bi-chat-fill+footer-icon+me-3%22%3E%3C%2Fi%3E%3C%2Fa%3E%0A%0A++++++++++++++++++++'
   43    85        INIT_FCALL_BY_NAME                                       'is_user_logged_in'
         86        DO_FCALL                                      0  $32     
         87      > JMPZ                                                     $32, ->93
   44    88    >   ECHO                                                     '++++++++++++++++++++%3Ca+href%3D%22'
         89        INIT_FCALL_BY_NAME                                       'wp_logout_url'
         90        DO_FCALL                                      0  $33     
         91        ECHO                                                     $33
         92        ECHO                                                     '%22+class%3D%22custom-button%22%3ED%C3%A9connexion%3C%2Fa%3E%0A++++++++++++++++++++'
   46    93    >   ECHO                                                     '++++++++++++++++++++%3Ca+href%3D%22'
         94        INIT_FCALL_BY_NAME                                       'esc_url'
         95        INIT_FCALL_BY_NAME                                       'get_permalink'
         96        INIT_FCALL_BY_NAME                                       'get_page_by_path'
         97        SEND_VAL_EX                                              '%2Fcreer-une-annonce'
         98        DO_FCALL                                      0  $34     
         99        SEND_VAR_NO_REF_EX                                       $34
        100        DO_FCALL                                      0  $35     
        101        SEND_VAR_NO_REF_EX                                       $35
        102        DO_FCALL                                      0  $36     
        103        ECHO                                                     $36
        104        ECHO                                                     '%22+class%3D%22custom-button%22%3ECr%C3%A9er+une+annonce%3C%2Fa%3E%0A++++++++++++++++%3C%2Fdiv%3E%0A++++++++++++%3C%2Fdiv%3E%0A++++++++%3C%2Fdiv%3E%0A++++%3C%2Fnav%3E%0A%0A++++%3Cdiv+class%3D%22position-relative%22%3E%0A++++++++%3Cimg+src%3D%22'
   53   105        INIT_FCALL_BY_NAME                                       'get_template_directory_uri'
        106        DO_FCALL                                      0  $37     
        107        ECHO                                                     $37
        108        ECHO                                                     '%2Fimages%2Fhero.png%22+%0A++++++++++++alt%3D%22gensquijouent%22+%0A++++++++++++class%3D%22img-fluid+w-100%22+%0A++++++++++++style%3D%22border-radius%3A+0%3B%22%3E%0A%0A++++++++%3Cdiv+class%3D%22position-absolute+top-50+start-50+translate-middle+text-center+text-white++p-md-4%22%3E%0A++++++++++++%3Ch1+class%3D%22display-3+display-md-1%22%3E%3Cb%3EBACK2PIXELS%3C%2Fb%3E%3C%2Fh1%3E%0A++++++++++++%3Cp+class%3D%22lead+lead-md%22%3ELe+site+o%C3%B9+vos+jeux+et+consoles+trouvent+une+nouvelle+vie+%3A+%C3%A9changez+facilement+et+connectez-vous+avec+des+passionn%C3%A9s+comme+vous+%21%3C%2Fp%3E%0A++++++++++++%3Cp+class%3D%22lead+lead-md%22%3E%3Cb%3ET%E2%80%99es+pr%C3%AAt+%3F+%C3%80+toi+de+jouer+%21%3C%2Fb%3E%3C%2Fp%3E%0A++++++++++++%3Ca+href%3D%22'
   62   109        INIT_FCALL_BY_NAME                                       'esc_url'
        110        INIT_FCALL_BY_NAME                                       'get_permalink'
        111        INIT_FCALL_BY_NAME                                       'get_page_by_path'
        112        SEND_VAL_EX                                              '%2Fcreer-une-annonce'
        113        DO_FCALL                                      0  $38     
        114        SEND_VAR_NO_REF_EX                                       $38
        115        DO_FCALL                                      0  $39     
        116        SEND_VAR_NO_REF_EX                                       $39
        117        DO_FCALL                                      0  $40     
        118        ECHO                                                     $40
        119        ECHO                                                     '%22+class%3D%22custom-button%22%3ECR%C3%89ER+UNE+ANNONCE%3C%2Fa%3E%0A++++++++%3C%2Fdiv%3E%0A++++%3C%2Fdiv%3E%0A%0A++++%3Cdiv+class%3D%22container+mt-5%22%3E%0A++++++++%3Cdiv+class%3D%22row+gy-3%22%3E%0A++++++++++++%3Cdiv+class%3D%22col-md-6%22%3E%0A++++++++++++++++%3Cdiv+class%3D%22card%22+style%3D%22max-width%3A+400px%3B+margin%3A+0+auto%3B%22%3E%0A++++++++++++++++++++%3Cimg+src%3D%22'
   70   120        INIT_FCALL_BY_NAME                                       'get_template_directory_uri'
        121        DO_FCALL                                      0  $41     
        122        ECHO                                                     $41
        123        ECHO                                                     '%2Fimages%2FJEUX.png%22+class%3D%22card-img-top%22+alt%3D%22explorerjeux%22%3E%0A++++++++++++++++++++%3Cdiv+class%3D%22card-body%22%3E%0A++++++++++++++++++++++++%3Ch5+class%3D%22card-title%22%3ED%C3%89COUVRE+LES+JEUX+VID%C3%89O%3C%2Fh5%3E%0A++++++++++++++++++++++++%3Ca+href%3D%22'
   73   124        INIT_FCALL_BY_NAME                                       'esc_url'
        125        INIT_FCALL_BY_NAME                                       'get_permalink'
        126        INIT_FCALL_BY_NAME                                       'get_page_by_path'
        127        SEND_VAL_EX                                              '%2Fjeux-video-logged-in'
        128        DO_FCALL                                      0  $42     
        129        SEND_VAR_NO_REF_EX                                       $42
        130        DO_FCALL                                      0  $43     
        131        SEND_VAR_NO_REF_EX                                       $43
        132        DO_FCALL                                      0  $44     
        133        ECHO                                                     $44
        134        ECHO                                                     '%22+class%3D%22custom-button%22%3EEXPLORER%3C%2Fa%3E%0A++++++++++++++++++++%3C%2Fdiv%3E%0A++++++++++++++++%3C%2Fdiv%3E%0A++++++++++++%3C%2Fdiv%3E%0A%0A++++++++++++%3Cdiv+class%3D%22col-md-6%22%3E%0A++++++++++++++++%3Cdiv+class%3D%22card%22+style%3D%22max-width%3A+400px%3B+margin%3A+0+auto%3B%22%3E%0A++++++++++++++++++++%3Cimg+src%3D%22'
   80   135        INIT_FCALL_BY_NAME                                       'get_template_directory_uri'
        136        DO_FCALL                                      0  $45     
        137        ECHO                                                     $45
        138        ECHO                                                     '%2Fimages%2FCONSOLES.png%22+class%3D%22card-img-top%22+alt%3D%22explorerconsoles%22%3E%0A++++++++++++++++++++%3Cdiv+class%3D%22card-body%22%3E%0A++++++++++++++++++++++++%3Ch5+class%3D%22card-title%22%3ED%C3%89COUVRE+LES+CONSOLES%3C%2Fh5%3E%0A++++++++++++++++++++++++%3Ca+href%3D%22'
   83   139        INIT_FCALL_BY_NAME                                       'esc_url'
        140        INIT_FCALL_BY_NAME                                       'get_permalink'
        141        INIT_FCALL_BY_NAME                                       'get_page_by_path'
        142        SEND_VAL_EX                                              '%2Fconsoles-logged-in'
        143        DO_FCALL                                      0  $46     
        144        SEND_VAR_NO_REF_EX                                       $46
        145        DO_FCALL                                      0  $47     
        146        SEND_VAR_NO_REF_EX                                       $47
        147        DO_FCALL                                      0  $48     
        148        ECHO                                                     $48
        149        ECHO                                                     '%22+class%3D%22custom-button%22%3EEXPLORER%3C%2Fa%3E%0A++++++++++++++++++++%3C%2Fdiv%3E%0A++++++++++++++++%3C%2Fdiv%3E%0A++++++++++++%3C%2Fdiv%3E%0A++++++++%3C%2Fdiv%3E%0A++++%3C%2Fdiv%3E%0A%0A++++%3Cdiv+class%3D%22container%22%3E%0A++++++++%3Cdiv+class%3D%22row+gy-5+mb-5%22%3E%0A++++++++++++%3Cdiv+class%3D%22col-6+col-md-3%22%3E%0A++++++++++++++++%3Ch1%3E%3Cbr%3E%3Cb%3EFIL+D%27ACTUALIT%C3%89%3C%2Fb%3E%3C%2Fbr%3E%3C%2Fh1%3E%0A++++++++++++++++%3Chr+style%3D%22border-top%3A+6px+solid+%237058A8%3B+margin%3A+5px+0%3B%22%3E%0A++++++++++++%3C%2Fdiv%3E%0A++++++++%3C%2Fdiv%3E%0A++++%3C%2Fdiv%3E%0A%3C%2Fbody%3E%0A%0A%0A%0A++++'
  103   150        NEW                                              $49     'WP_Query'
  104   151        SEND_VAL_EX                                              <array>
  103   152        DO_FCALL                                      0          
        153        ASSIGN                                                   !0, $49
  108   154        INIT_METHOD_CALL                                         !0, 'have_posts'
        155        DO_FCALL                                      0  $52     
        156      > JMPZ                                                     $52, ->224
  109   157    >   ASSIGN                                                   !1, 1
  111   158        ECHO                                                     '%0A++++%3Cdiv+class%3D%22container+my-5%22%3E%0A++++++++%3Cdiv+class%3D%22row+gy-5%22%3E%0A++++++++'
  114   159      > JMP                                                      ->220
        160    >   INIT_METHOD_CALL                                         !0, 'the_post'
        161        DO_FCALL                                      0          
  115   162        ECHO                                                     '++++++++++++%3Cdiv+class%3D%22col-6+col-md-3%22%3E%0A++++++++++++++++%3Cdiv+class%3D%22card%22+style%3D%22max-width%3A+250px%3B+margin%3A+0+auto%3B%22%3E%0A++++++++++++++++++++%3Cdiv+class%3D%22d-flex+align-items-center+p-2%22%3E%0A++++++++++++++++++++++++'
  118   163        INIT_FCALL_BY_NAME                                       'randomName'
        164        DO_FCALL                                      0  $55     
        165        ASSIGN                                                   !2, $55
  119   166        ECHO                                                     '++++++++++++++++++++++++%3Cimg+src%3D%22'
        167        CONCAT                                           ~57     'https%3A%2F%2Frobohash.org%2F', !2
        168        ECHO                                                     ~57
        169        ECHO                                                     '%22+%0A++++++++++++++++++++++++++++alt%3D%22Avatar+personnalis%C3%A9%22+%0A++++++++++++++++++++++++++++class%3D%22img-thumbnail%22+%0A++++++++++++++++++++++++++++++++style%3D%22width%3A+40px%3B+height%3A+40px%3B%22+%2F%3E%0A++++++++++++++++++++++++++++%3Cspan+class%3D%22ms-2%22%3E'
  123   170        ECHO                                                     !2
        171        ECHO                                                     '%3C%2Fspan%3E%0A++++++++++++++++++++++++%3C%2Fdiv%3E%0A%0A++++++++++++++++++++++++++++'
  128   172        INIT_FCALL_BY_NAME                                       'get_field'
        173        SEND_VAL_EX                                              'custom_link'
        174        DO_FCALL                                      0  $58     
        175        ASSIGN                                                   !3, $58
  131   176      > JMPZ                                                     !3, ->188
  133   177    >   INIT_FCALL                                               'strpos'
        178        SEND_VAR                                                 !3
        179        SEND_VAL                                                 'http'
        180        DO_ICALL                                         $60     
        181        IS_NOT_IDENTICAL                                         $60, 0
        182      > JMPZ                                                     ~61, ->187
  134   183    >   INIT_FCALL_BY_NAME                                       'home_url'
        184        SEND_VAR_EX                                              !3
        185        DO_FCALL                                      0  $62     
        186        ASSIGN                                                   !3, $62
  131   187    > > JMP                                                      ->191
  138   188    >   INIT_FCALL_BY_NAME                                       'get_permalink'
        189        DO_FCALL                                      0  $64     
        190        ASSIGN                                                   !3, $64
  141   191    >   ECHO                                                     '%0A++++++++++++++++++++++++%3Ca+href%3D%22'
  142   192        INIT_FCALL_BY_NAME                                       'esc_url'
        193        SEND_VAR_EX                                              !3
        194        DO_FCALL                                      0  $66     
        195        ECHO                                                     $66
        196        ECHO                                                     '%22%3E%0A++++++++++++++++++++++++++++'
  143   197        INIT_FCALL_BY_NAME                                       'the_post_thumbnail'
        198        SEND_VAL_EX                                              'medium'
  144   199        SEND_VAL_EX                                              <array>
  143   200        DO_FCALL                                      0          
  146   201        ECHO                                                     '++++++++++++++++++++++++%3C%2Fa%3E%0A%0A%0A++++++++++++++++++++%3Cdiv+class%3D%22card-body%22%3E%0A++++++++++++++++++++++++%3Ch5+class%3D%22card-title%22%3E'
  150   202        INIT_FCALL_BY_NAME                                       'the_title'
        203        DO_FCALL                                      0          
        204        ECHO                                                     '%3C%2Fh5%3E%0A++++++++++++++++++++++++%3Cp%3E'
  151   205        INIT_FCALL_BY_NAME                                       'the_content'
        206        DO_FCALL                                      0          
        207        ECHO                                                     '%3C%2Fp%3E%0A++++++++++++++++++++++++%3Ca+href%3D%22'
  152   208        INIT_FCALL_BY_NAME                                       'esc_url'
        209        INIT_FCALL_BY_NAME                                       'get_permalink'
        210        INIT_FCALL_BY_NAME                                       'get_page_by_path'
        211        SEND_VAL_EX                                              '%2Fchat-box'
        212        DO_FCALL                                      0  $70     
        213        SEND_VAR_NO_REF_EX                                       $70
        214        DO_FCALL                                      0  $71     
        215        SEND_VAR_NO_REF_EX                                       $71
        216        DO_FCALL                                      0  $72     
        217        ECHO                                                     $72
        218        ECHO                                                     '%22+class%3D%22custom-button%22%3EMESSAGE%3C%2Fa%3E%0A++++++++++++++++++++%3C%2Fdiv%3E%0A++++++++++++++++%3C%2Fdiv%3E%0A++++++++++++%3C%2Fdiv%3E%0A++++++++'
  156   219        PRE_INC                                                  !1
  114   220    >   INIT_METHOD_CALL                                         !0, 'have_posts'
        221        DO_FCALL                                      0  $74     
        222      > JMPNZ                                                    $74, ->160
  157   223    >   ECHO                                                     '++++++++%3C%2Fdiv%3E%0A++++%3C%2Fdiv%3E%0A%3C%2Fdiv%3E%0A'
  161   224    >   ECHO                                                     '%0A%0A%0A%0A++++'
  166   225        NEW                                              $75     'WP_Query'
  167   226        SEND_VAL_EX                                              <array>
  166   227        DO_FCALL                                      0          
        228        ASSIGN                                                   !4, $75
  171   229        INIT_METHOD_CALL                                         !4, 'have_posts'
        230        DO_FCALL                                      0  $78     
        231      > JMPZ                                                     $78, ->299
  172   232    >   ASSIGN                                                   !1, 1
  174   233        ECHO                                                     '%0A++++%3Cdiv+class%3D%22container%22%3E%0A++++++++++++%3Cdiv+class%3D%22row+gy-5+mb-5%22%3E%0A++++++++%3Cdiv+class%3D%22container+my-5%22%3E%0A++++++++++++%3Cdiv+class%3D%22row+gy-5%22%3E%0A++++++++++++'
  179   234      > JMP                                                      ->295
        235    >   INIT_METHOD_CALL                                         !4, 'the_post'
        236        DO_FCALL                                      0          
  180   237        ECHO                                                     '++++++++++++++++%3Cdiv+class%3D%22col-6+col-md-3%22%3E%0A++++++++++++++++++++%3Cdiv+class%3D%22card%22+style%3D%22max-width%3A+250px%3B+margin%3A+0+auto%3B%22%3E%0A++++++++++++++++++++++++%3Cdiv+class%3D%22d-flex+align-items-center+p-2%22%3E%0A++++++++++++++++++++++++++++'
  183   238        INIT_FCALL_BY_NAME                                       'randomName'
        239        DO_FCALL                                      0  $81     
        240        ASSIGN                                                   !2, $81
  184   241        ECHO                                                     '++++++++++++++++++++++++++++%3Cimg+src%3D%22'
        242        CONCAT                                           ~83     'https%3A%2F%2Frobohash.org%2F', !2
        243        ECHO                                                     ~83
        244        ECHO                                                     '%22+%0A++++++++++++++++++++++++++++++++alt%3D%22Avatar+personnalis%C3%A9%22+%0A++++++++++++++++++++++++++++++++class%3D%22img-thumbnail%22+%0A++++++++++++++++++++++++++++++++style%3D%22width%3A+40px%3B+height%3A+40px%3B%22+%2F%3E%0A++++++++++++++++++++++++++++%3Cspan+class%3D%22ms-2%22%3E'
  188   245        ECHO                                                     !2
        246        ECHO                                                     '%3C%2Fspan%3E%0A++++++++++++++++++++++++%3C%2Fdiv%3E%0A%0A++++++++++++++++++++++++++++'
  193   247        INIT_FCALL_BY_NAME                                       'get_field'
        248        SEND_VAL_EX                                              'custom_link'
        249        DO_FCALL                                      0  $84     
        250        ASSIGN                                                   !3, $84
  196   251      > JMPZ                                                     !3, ->263
  197   252    >   INIT_FCALL                                               'strpos'
        253        SEND_VAR                                                 !3
        254        SEND_VAL                                                 'http'
        255        DO_ICALL                                         $86     
        256        IS_NOT_IDENTICAL                                         $86, 0
        257      > JMPZ                                                     ~87, ->262
  199   258    >   INIT_FCALL_BY_NAME                                       'home_url'
        259        SEND_VAR_EX                                              !3
        260        DO_FCALL                                      0  $88     
        261        ASSIGN                                                   !3, $88
  196   262    > > JMP                                                      ->266
  203   263    >   INIT_FCALL_BY_NAME                                       'get_permalink'
        264        DO_FCALL                                      0  $90     
        265        ASSIGN                                                   !3, $90
  206   266    >   ECHO                                                     '%0A++++++++++++++++++++++++++++%3Ca+href%3D%22'
  207   267        INIT_FCALL_BY_NAME                                       'esc_url'
        268        SEND_VAR_EX                                              !3
        269        DO_FCALL                                      0  $92     
        270        ECHO                                                     $92
        271        ECHO                                                     '%22%3E%0A++++++++++++++++++++++++++++++++'
  208   272        INIT_FCALL_BY_NAME                                       'the_post_thumbnail'
        273        SEND_VAL_EX                                              'medium'
  209   274  

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
258.06 ms | 1038 KiB | 15 Q