3v4l.org

run code in 300+ PHP versions simultaneously
<?php class TableDef { public $name; public $display_name; public $notify_insert; public $fields = array(); public $indexes = array(); public $primary_keys = array(); public $auto_increment = ""; public $connection = 1; /** * Constructor * * @param string $name Name * @param string $display_name Display name * @param bool $notify_insert Notify on an Insert? */ public function TableDef($name, $display_name, $notify_insert) { $this->name = $name; $this->display_name = $display_name; $this->notify_insert = $notify_insert; } }
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/BOilp
function name:  (null)
number of ops:  1
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   24     0  E > > RETURN                                                   1

Class TableDef:
Function tabledef:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/BOilp
function name:  TableDef
number of ops:  10
compiled vars:  !0 = $name, !1 = $display_name, !2 = $notify_insert
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   19     0  E >   RECV                                             !0      
          1        RECV                                             !1      
          2        RECV                                             !2      
   20     3        ASSIGN_OBJ                                               'name'
          4        OP_DATA                                                  !0
   21     5        ASSIGN_OBJ                                               'display_name'
          6        OP_DATA                                                  !1
   22     7        ASSIGN_OBJ                                               'notify_insert'
          8        OP_DATA                                                  !2
   23     9      > RETURN                                                   null

End of function tabledef

End of class TableDef.

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
185.65 ms | 1001 KiB | 13 Q