3v4l.org

run code in 300+ PHP versions simultaneously
<?php abstract class AParent { public static $test = 'one'; public static function get() { return self::$test; } } class AChild extends AParent { public static $test = 'two'; } var_dump(AChild::get());
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/3hA4o
function name:  (null)
number of ops:  6
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   17     0  E >   INIT_FCALL                                               'var_dump'
          1        INIT_STATIC_METHOD_CALL                                  'AChild', 'get'
          2        DO_FCALL                                      0  $0      
          3        SEND_VAR                                                 $0
          4        DO_ICALL                                                 
          5      > RETURN                                                   1

Class AParent:
Function get:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/3hA4o
function name:  get
number of ops:  3
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    8     0  E >   FETCH_STATIC_PROP_R          unknown             ~0      'test'
          1      > RETURN                                                   ~0
    9     2*     > RETURN                                                   null

End of function get

End of class AParent.

Class AChild:
Function get:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/3hA4o
function name:  get
number of ops:  3
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    8     0  E >   FETCH_STATIC_PROP_R          unknown             ~0      'test'
          1      > RETURN                                                   ~0
    9     2*     > RETURN                                                   null

End of function get

End of class AChild.

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
180.27 ms | 1395 KiB | 15 Q