3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Hail{ public function __call($method,$args) { return $this->$method(); } public function __construct() { $this->monday = function(){ return "monday"; }; $this->hello_monday = function(){ $monday = $this->monday; echo "what a beautiful ".$monday()."!"; }; } } $hoi = new Hail(); $function = $hoi->{"hello_monday"}; $function();
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/DMrPp
function name:  (null)
number of ops:  8
compiled vars:  !0 = $hoi, !1 = $function
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   21     0  E >   NEW                                              $2      'Hail'
          1        DO_FCALL                                      0          
          2        ASSIGN                                                   !0, $2
   22     3        FETCH_OBJ_R                                      ~5      !0, 'hello_monday'
          4        ASSIGN                                                   !1, ~5
   23     5        INIT_DYNAMIC_CALL                                        !1
          6        DO_FCALL                                      0          
          7      > RETURN                                                   1

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

End of function %00%7Bclosure%7D%2Fin%2FDMrPp%3A10%240

Function %00%7Bclosure%7D%2Fin%2FDMrPp%3A14%241:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/DMrPp
function name:  {closure}
number of ops:  9
compiled vars:  !0 = $monday
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   15     0  E >   FETCH_THIS                                       $1      
          1        FETCH_OBJ_R                                      ~2      $1, 'monday'
          2        ASSIGN                                                   !0, ~2
   16     3        INIT_DYNAMIC_CALL                                        !0
          4        DO_FCALL                                      0  $4      
          5        CONCAT                                           ~5      'what+a+beautiful+', $4
          6        CONCAT                                           ~6      ~5, '%21'
          7        ECHO                                                     ~6
   17     8      > RETURN                                                   null

End of function %00%7Bclosure%7D%2Fin%2FDMrPp%3A14%241

Class Hail:
Function __call:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/DMrPp
function name:  __call
number of ops:  6
compiled vars:  !0 = $method, !1 = $args
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    3     0  E >   RECV                                             !0      
          1        RECV                                             !1      
    5     2        INIT_METHOD_CALL                                         !0
          3        DO_FCALL                                      0  $2      
          4      > RETURN                                                   $2
    6     5*     > RETURN                                                   null

End of function __call

Function __construct:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/DMrPp
function name:  __construct
number of ops:  7
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   10     0  E >   DECLARE_LAMBDA_FUNCTION                                  '%00%7Bclosure%7D%2Fin%2FDMrPp%3A10%240'
          1        ASSIGN_OBJ                                               'monday'
   12     2        OP_DATA                                                  ~1
   14     3        DECLARE_LAMBDA_FUNCTION                                  '%00%7Bclosure%7D%2Fin%2FDMrPp%3A14%241'
          4        ASSIGN_OBJ                                               'hello_monday'
   17     5        OP_DATA                                                  ~3
   18     6      > RETURN                                                   null

End of function __construct

End of class Hail.

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
170.38 ms | 1399 KiB | 13 Q