3v4l.org

run code in 300+ PHP versions simultaneously
<?php // SETUP CODE class A { function __construct($val) { $this->val = $val; } } $objs = [ new A(3), new A(5), new A(2), ]; // AMAZING max_by IMPL :P $res = array_reduce($objs, function ($c, $o) { $c = max($o->val, $c); return $o->val == $c ? $o->val : $c; }); var_dump($res);
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/IJrvU
function name:  (null)
number of ops:  23
compiled vars:  !0 = $objs, !1 = $res
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   11     0  E >   NEW                                              $2      'A'
          1        SEND_VAL_EX                                              3
          2        DO_FCALL                                      0          
          3        INIT_ARRAY                                       ~4      $2
   12     4        NEW                                              $5      'A'
          5        SEND_VAL_EX                                              5
          6        DO_FCALL                                      0          
          7        ADD_ARRAY_ELEMENT                                ~4      $5
   13     8        NEW                                              $7      'A'
          9        SEND_VAL_EX                                              2
         10        DO_FCALL                                      0          
         11        ADD_ARRAY_ELEMENT                                ~4      $7
   10    12        ASSIGN                                                   !0, ~4
   17    13        INIT_FCALL                                               'array_reduce'
         14        SEND_VAR                                                 !0
         15        DECLARE_LAMBDA_FUNCTION                                  '%00%7Bclosure%7D%2Fin%2FIJrvU%3A17%240'
   20    16        SEND_VAL                                                 ~10
         17        DO_ICALL                                         $11     
   17    18        ASSIGN                                                   !1, $11
   21    19        INIT_FCALL                                               'var_dump'
         20        SEND_VAR                                                 !1
         21        DO_ICALL                                                 
         22      > RETURN                                                   1

Function %00%7Bclosure%7D%2Fin%2FIJrvU%3A17%240:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 11, Position 2 = 14
Branch analysis from position: 11
1 jumps found. (Code = 42) Position 1 = 15
Branch analysis from position: 15
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 14
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/IJrvU
function name:  {closure}
number of ops:  17
compiled vars:  !0 = $c, !1 = $o
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   17     0  E >   RECV                                             !0      
          1        RECV                                             !1      
   18     2        INIT_FCALL                                               'max'
          3        FETCH_OBJ_R                                      ~2      !1, 'val'
          4        SEND_VAL                                                 ~2
          5        SEND_VAR                                                 !0
          6        DO_ICALL                                         $3      
          7        ASSIGN                                                   !0, $3
   19     8        FETCH_OBJ_R                                      ~5      !1, 'val'
          9        IS_EQUAL                                                 !0, ~5
         10      > JMPZ                                                     ~6, ->14
         11    >   FETCH_OBJ_R                                      ~7      !1, 'val'
         12        QM_ASSIGN                                        ~8      ~7
         13      > JMP                                                      ->15
         14    >   QM_ASSIGN                                        ~8      !0
         15    > > RETURN                                                   ~8
   20    16*     > RETURN                                                   null

End of function %00%7Bclosure%7D%2Fin%2FIJrvU%3A17%240

Class A:
Function __construct:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/IJrvU
function name:  __construct
number of ops:  4
compiled vars:  !0 = $val
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    5     0  E >   RECV                                             !0      
    6     1        ASSIGN_OBJ                                               'val'
          2        OP_DATA                                                  !0
    7     3      > RETURN                                                   null

End of function __construct

End of class A.

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
151.81 ms | 1400 KiB | 19 Q