3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface TotoInterface { public function test(); public function tata(); } abstract class AbstractToto implements TotoInterface { public function test() { echo 'test'; } public function tata() { echo $this->getTiti(); } abstract protected function getTiti(); } class Toto extends AbstractToto { public function tata() { echo 'tata'; } } $oto = new Toto();
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/2NCCH
function name:  (null)
number of ops:  6
compiled vars:  !0 = $oto
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   10     0  E >   DECLARE_CLASS                                            'abstracttoto'
   25     1        DECLARE_CLASS                                            'toto', 'abstracttoto'
   33     2        NEW                                              $1      'Toto'
          3        DO_FCALL                                      0          
          4        ASSIGN                                                   !0, $1
          5      > RETURN                                                   1

Class TotoInterface:
Function test:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/2NCCH
function name:  test
number of ops:  1
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    5     0  E > > RETURN                                                   null

End of function test

Function tata:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/2NCCH
function name:  tata
number of ops:  1
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    7     0  E > > RETURN                                                   null

End of function tata

End of class TotoInterface.

Class AbstractToto:
Function test:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/2NCCH
function name:  test
number of ops:  2
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   14     0  E >   ECHO                                                     'test'
   15     1      > RETURN                                                   null

End of function test

Function tata:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/2NCCH
function name:  tata
number of ops:  4
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   19     0  E >   INIT_METHOD_CALL                                         'getTiti'
          1        DO_FCALL                                      0  $0      
          2        ECHO                                                     $0
   20     3      > RETURN                                                   null

End of function tata

Function gettiti:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/2NCCH
function name:  getTiti
number of ops:  1
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   22     0  E > > RETURN                                                   null

End of function gettiti

End of class AbstractToto.

Class Toto:
Function tata:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/2NCCH
function name:  tata
number of ops:  2
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   29     0  E >   ECHO                                                     'tata'
   30     1      > RETURN                                                   null

End of function tata

End of class Toto.

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
153.8 ms | 1403 KiB | 13 Q