3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Prototype { public function __call($method,$args) { $f = $this->$method; $f = $f->bindTo($this); return $f(); } public function __construct($args) { foreach ($args as $k => $v) { $this->$k = $v; } } } $hoi = new Prototype( array( "monday" => function(){ return "monday"; }, "hello_monday" => function(){ echo "what a beautiful ".$this->monday()."!"; } ) ); $hoi->{"hello_monday"}();
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/UsnDR
function name:  (null)
number of ops:  11
compiled vars:  !0 = $hoi
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   20     0  E >   NEW                                              $1      'Prototype'
   22     1        DECLARE_LAMBDA_FUNCTION                                  '%00%7Bclosure%7D%2Fin%2FUsnDR%3A22%240'
   24     2        INIT_ARRAY                                       ~3      ~2, 'monday'
   25     3        DECLARE_LAMBDA_FUNCTION                                  '%00%7Bclosure%7D%2Fin%2FUsnDR%3A25%241'
   27     4        ADD_ARRAY_ELEMENT                                ~3      ~4, 'hello_monday'
          5        SEND_VAL_EX                                              ~3
          6        DO_FCALL                                      0          
   20     7        ASSIGN                                                   !0, $1
   32     8        INIT_METHOD_CALL                                         !0, 'hello_monday'
          9        DO_FCALL                                      0          
         10      > RETURN                                                   1

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

End of function %00%7Bclosure%7D%2Fin%2FUsnDR%3A22%240

Function %00%7Bclosure%7D%2Fin%2FUsnDR%3A25%241:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/UsnDR
function name:  {closure}
number of ops:  7
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   26     0  E >   FETCH_THIS                                       $0      
          1        INIT_METHOD_CALL                                         $0, 'monday'
          2        DO_FCALL                                      0  $1      
          3        CONCAT                                           ~2      'what+a+beautiful+', $1
          4        CONCAT                                           ~3      ~2, '%21'
          5        ECHO                                                     ~3
   27     6      > RETURN                                                   null

End of function %00%7Bclosure%7D%2Fin%2FUsnDR%3A25%241

Class Prototype:
Function __call:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/UsnDR
function name:  __call
number of ops:  13
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        FETCH_OBJ_R                                      ~3      !0
          3        ASSIGN                                                   !2, ~3
    7     4        INIT_METHOD_CALL                                         !2, 'bindTo'
          5        FETCH_THIS                                       $5      
          6        SEND_VAR_EX                                              $5
          7        DO_FCALL                                      0  $6      
          8        ASSIGN                                                   !2, $6
    8     9        INIT_DYNAMIC_CALL                                        !2
         10        DO_FCALL                                      0  $8      
         11      > RETURN                                                   $8
    9    12*     > RETURN                                                   null

End of function __call

Function __construct:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 77) Position 1 = 2, Position 2 = 7
Branch analysis from position: 2
2 jumps found. (Code = 78) Position 1 = 3, Position 2 = 7
Branch analysis from position: 3
1 jumps found. (Code = 42) Position 1 = 2
Branch analysis from position: 2
Branch analysis from position: 7
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 7
filename:       /in/UsnDR
function name:  __construct
number of ops:  9
compiled vars:  !0 = $args, !1 = $v, !2 = $k
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   11     0  E >   RECV                                             !0      
   13     1      > FE_RESET_R                                       $3      !0, ->7
          2    > > FE_FETCH_R                                       ~4      $3, !1, ->7
          3    >   ASSIGN                                                   !2, ~4
   15     4        ASSIGN_OBJ                                               !2
          5        OP_DATA                                                  !1
   13     6      > JMP                                                      ->2
          7    >   FE_FREE                                                  $3
   17     8      > RETURN                                                   null

End of function __construct

End of class Prototype.

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
163.43 ms | 1390 KiB | 13 Q