3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Prototype { public function __call($method,$args) { echo "!!"; $f = $this->$method; return $f(); } } $object = new Prototype; $object->monday = function(){ return "monday"; }; $object->hello_monday = function(){ echo "what a beautiful day!"; }; $object->{"hello_monday"}();
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/HmpkZ
function name:  (null)
number of ops:  12
compiled vars:  !0 = $object
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   12     0  E >   NEW                                              $1      'Prototype'
          1        DO_FCALL                                      0          
          2        ASSIGN                                                   !0, $1
   13     3        DECLARE_LAMBDA_FUNCTION                                  '%00%7Bclosure%7D%2Fin%2FHmpkZ%3A13%240'
          4        ASSIGN_OBJ                                               !0, 'monday'
   15     5        OP_DATA                                                  ~5
   16     6        DECLARE_LAMBDA_FUNCTION                                  '%00%7Bclosure%7D%2Fin%2FHmpkZ%3A16%241'
          7        ASSIGN_OBJ                                               !0, 'hello_monday'
   18     8        OP_DATA                                                  ~7
   21     9        INIT_METHOD_CALL                                         !0, 'hello_monday'
         10        DO_FCALL                                      0          
         11      > RETURN                                                   1

Function %00%7Bclosure%7D%2Fin%2FHmpkZ%3A13%240:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/HmpkZ
function name:  {closure}
number of ops:  2
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   14     0  E > > RETURN                                                   'monday'
   15     1*     > RETURN                                                   null

End of function %00%7Bclosure%7D%2Fin%2FHmpkZ%3A13%240

Function %00%7Bclosure%7D%2Fin%2FHmpkZ%3A16%241:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/HmpkZ
function name:  {closure}
number of ops:  2
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   17     0  E >   ECHO                                                     'what+a+beautiful+day%21'
   18     1      > RETURN                                                   null

End of function %00%7Bclosure%7D%2Fin%2FHmpkZ%3A16%241

Class Prototype:
Function __call:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/HmpkZ
function name:  __call
number of ops:  9
compiled vars:  !0 = $method, !1 = $args, !2 = $f
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    4     0  E >   RECV                                             !0      
          1        RECV                                             !1      
    6     2        ECHO                                                     '%21%21'
    7     3        FETCH_OBJ_R                                      ~3      !0
          4        ASSIGN                                                   !2, ~3
    8     5        INIT_DYNAMIC_CALL                                        !2
          6        DO_FCALL                                      0  $5      
          7      > RETURN                                                   $5
    9     8*     > RETURN                                                   null

End of function __call

End of class Prototype.

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
145.8 ms | 1395 KiB | 13 Q