3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Person{ var $name; function __construct( string $name){ $this->name = 'David'; } } class Student extends Person{ function __construct(string $name){ $this->name = $name; } } $ob2 = new Student("Peter"); echo $ob2->name;
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/0uu2d
function name:  (null)
number of ops:  7
compiled vars:  !0 = $ob2
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   14     0  E >   NEW                                              $1      'Student'
          1        SEND_VAL_EX                                              'Peter'
          2        DO_FCALL                                      0          
          3        ASSIGN                                                   !0, $1
   16     4        FETCH_OBJ_R                                      ~4      !0, 'name'
          5        ECHO                                                     ~4
   17     6      > RETURN                                                   1

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

End of function __construct

End of class Person.

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

End of function __construct

End of class Student.

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
136.81 ms | 996 KiB | 13 Q