3v4l.org

run code in 300+ PHP versions simultaneously
<?php $a = 'acdmnprst'; $b = 'abcdefghijlmnopqrstuvz'; $al = strlen($a); $bl = strlen($b); $vowels = array('a', 'e', 'i', 'o', 'u', 'y'); for ($i = 0; $i < $al; $i++) { for ($j = 0; $j < $bl; $j++) { for ($k = 0; $k < $bl; $k++) { $arr = array($b[$j], $b[$k], $a[$i]); if (0 === count(array_intersect($arr, $vowels))) { echo $b[$j] . $b[$k] . $a[$i] . "\n"; } } } }
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 42) Position 1 = 41
Branch analysis from position: 41
2 jumps found. (Code = 44) Position 1 = 43, Position 2 = 9
Branch analysis from position: 43
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 9
1 jumps found. (Code = 42) Position 1 = 38
Branch analysis from position: 38
2 jumps found. (Code = 44) Position 1 = 40, Position 2 = 11
Branch analysis from position: 40
2 jumps found. (Code = 44) Position 1 = 43, Position 2 = 9
Branch analysis from position: 43
Branch analysis from position: 9
Branch analysis from position: 11
1 jumps found. (Code = 42) Position 1 = 35
Branch analysis from position: 35
2 jumps found. (Code = 44) Position 1 = 37, Position 2 = 13
Branch analysis from position: 37
2 jumps found. (Code = 44) Position 1 = 40, Position 2 = 11
Branch analysis from position: 40
Branch analysis from position: 11
Branch analysis from position: 13
2 jumps found. (Code = 43) Position 1 = 27, Position 2 = 34
Branch analysis from position: 27
2 jumps found. (Code = 44) Position 1 = 37, Position 2 = 13
Branch analysis from position: 37
Branch analysis from position: 13
Branch analysis from position: 34
filename:       /in/9pY75
function name:  (null)
number of ops:  44
compiled vars:  !0 = $a, !1 = $b, !2 = $al, !3 = $bl, !4 = $vowels, !5 = $i, !6 = $j, !7 = $k, !8 = $arr
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    3     0  E >   ASSIGN                                                   !0, 'acdmnprst'
    4     1        ASSIGN                                                   !1, 'abcdefghijlmnopqrstuvz'
    6     2        STRLEN                                           ~11     !0
          3        ASSIGN                                                   !2, ~11
    7     4        STRLEN                                           ~13     !1
          5        ASSIGN                                                   !3, ~13
    9     6        ASSIGN                                                   !4, <array>
   11     7        ASSIGN                                                   !5, 0
          8      > JMP                                                      ->41
   12     9    >   ASSIGN                                                   !6, 0
         10      > JMP                                                      ->38
   13    11    >   ASSIGN                                                   !7, 0
         12      > JMP                                                      ->35
   14    13    >   FETCH_DIM_R                                      ~19     !1, !6
         14        INIT_ARRAY                                       ~20     ~19
         15        FETCH_DIM_R                                      ~21     !1, !7
         16        ADD_ARRAY_ELEMENT                                ~20     ~21
         17        FETCH_DIM_R                                      ~22     !0, !5
         18        ADD_ARRAY_ELEMENT                                ~20     ~22
         19        ASSIGN                                                   !8, ~20
   16    20        INIT_FCALL                                               'array_intersect'
         21        SEND_VAR                                                 !8
         22        SEND_VAR                                                 !4
         23        DO_ICALL                                         $24     
         24        COUNT                                            ~25     $24
         25        IS_IDENTICAL                                             ~25, 0
         26      > JMPZ                                                     ~26, ->34
   17    27    >   FETCH_DIM_R                                      ~27     !1, !6
         28        FETCH_DIM_R                                      ~28     !1, !7
         29        CONCAT                                           ~29     ~27, ~28
         30        FETCH_DIM_R                                      ~30     !0, !5
         31        CONCAT                                           ~31     ~29, ~30
         32        CONCAT                                           ~32     ~31, '%0A'
         33        ECHO                                                     ~32
   13    34    >   PRE_INC                                                  !7
         35    >   IS_SMALLER                                               !7, !3
         36      > JMPNZ                                                    ~34, ->13
   12    37    >   PRE_INC                                                  !6
         38    >   IS_SMALLER                                               !6, !3
         39      > JMPNZ                                                    ~36, ->11
   11    40    >   PRE_INC                                                  !5
         41    >   IS_SMALLER                                               !5, !2
         42      > JMPNZ                                                    ~38, ->9
   21    43    > > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
173.84 ms | 946 KiB | 16 Q