3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait setData { static function setData( $data ) { DataCollector::collectedData( 'set', $data ); } } trait dataHandler { use setData; static function getCollectedData() { DataCollector::collectedData( 'get' ); } private static function collectedData( $type, $value = NULL ) { if( strtolower( $type ) === 'set' ) { self::$CollectionData[] = $value; var_dump( self, DataCollector::$CollectionData); } elseif( strtolower( $type ) === 'get' ) return DataCollector::$CollectionData; } } class DataCollector { use dataHandler { collectedData as public; } private static $CollectionData = array(); } class Form { use setData {} } class Field extends Form { public function __construct( $type, $text = NULL ) { self::setData( $type ); } } class A { use setData{} public function __construct( $type, $text = NULL ) { self::setData( $type ); } } $Field1 = new Field( '1' ); $Field2 = new Field( '2' ); $A = new A( '3' ); #DataCollector::setData('4'); #dataHandler::setData('5'); var_dump( DataCollector::getCollectedData() );
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/brBtl
function name:  (null)
number of ops:  23
compiled vars:  !0 = $Field1, !1 = $Field2, !2 = $A
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    8     0  E >   DECLARE_CLASS                                            'datahandler'
   25     1        DECLARE_CLASS                                            'datacollector'
   30     2        DECLARE_CLASS                                            'form'
   32     3        DECLARE_CLASS                                            'field', 'form'
   38     4        DECLARE_CLASS                                            'a'
   46     5        NEW                                              $3      'Field'
          6        SEND_VAL_EX                                              '1'
          7        DO_FCALL                                      0          
          8        ASSIGN                                                   !0, $3
   47     9        NEW                                              $6      'Field'
         10        SEND_VAL_EX                                              '2'
         11        DO_FCALL                                      0          
         12        ASSIGN                                                   !1, $6
   48    13        NEW                                              $9      'A'
         14        SEND_VAL_EX                                              '3'
         15        DO_FCALL                                      0          
         16        ASSIGN                                                   !2, $9
   52    17        INIT_FCALL                                               'var_dump'
         18        INIT_STATIC_METHOD_CALL                                  'DataCollector', 'getCollectedData'
         19        DO_FCALL                                      0  $12     
         20        SEND_VAR                                                 $12
         21        DO_ICALL                                                 
         22      > RETURN                                                   1

Class setData:
Function setdata:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/brBtl
function name:  setData
number of ops:  6
compiled vars:  !0 = $data
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    3     0  E >   RECV                                             !0      
    4     1        INIT_STATIC_METHOD_CALL                                  'DataCollector', 'collectedData'
          2        SEND_VAL_EX                                              'set'
          3        SEND_VAR_EX                                              !0
          4        DO_FCALL                                      0          
    5     5      > RETURN                                                   null

End of function setdata

End of class setData.

Class dataHandler:
Function getcollecteddata:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/brBtl
function name:  getCollectedData
number of ops:  4
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   12     0  E >   INIT_STATIC_METHOD_CALL                                  'DataCollector', 'collectedData'
          1        SEND_VAL_EX                                              'get'
          2        DO_FCALL                                      0          
   13     3      > RETURN                                                   null

End of function getcollecteddata

Function collecteddata:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 7, Position 2 = 17
Branch analysis from position: 7
1 jumps found. (Code = 42) Position 1 = 24
Branch analysis from position: 24
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 17
2 jumps found. (Code = 43) Position 1 = 22, Position 2 = 24
Branch analysis from position: 22
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 24
filename:       /in/brBtl
function name:  collectedData
number of ops:  25
compiled vars:  !0 = $type, !1 = $value
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   15     0  E >   RECV                                             !0      
          1        RECV_INIT                                        !1      null
   16     2        INIT_FCALL                                               'strtolower'
          3        SEND_VAR                                                 !0
          4        DO_ICALL                                         $2      
          5        IS_IDENTICAL                                             $2, 'set'
          6      > JMPZ                                                     ~3, ->17
   17     7    >   FETCH_STATIC_PROP_W          unknown             $4      'CollectionData'
          8        ASSIGN_DIM                                               $4
          9        OP_DATA                                                  !1
   18    10        INIT_FCALL                                               'var_dump'
         11        FETCH_CONSTANT                                   ~6      'self'
         12        SEND_VAL                                                 ~6
         13        FETCH_STATIC_PROP_R          unknown             ~7      'CollectionData'
         14        SEND_VAL                                                 ~7
         15        DO_ICALL                                                 
         16      > JMP                                                      ->24
   20    17    >   INIT_FCALL                                               'strtolower'
         18        SEND_VAR                                                 !0
         19        DO_ICALL                                         $9      
         20        IS_IDENTICAL                                             $9, 'get'
         21      > JMPZ                                                     ~10, ->24
   21    22    >   FETCH_STATIC_PROP_R          unknown             ~11     'CollectionData'
         23      > RETURN                                                   ~11
   22    24    > > RETURN                                                   null

End of function collecteddata

End of class dataHandler.

Class DataCollector: [no user functions]
Class Form: [no user functions]
Class Field:
Function __construct:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/brBtl
function name:  __construct
number of ops:  6
compiled vars:  !0 = $type, !1 = $text
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   33     0  E >   RECV                                             !0      
          1        RECV_INIT                                        !1      null
   34     2        INIT_STATIC_METHOD_CALL                                  'setData'
          3        SEND_VAR_EX                                              !0
          4        DO_FCALL                                      0          
   35     5      > RETURN                                                   null

End of function __construct

End of class Field.

Class A:
Function __construct:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/brBtl
function name:  __construct
number of ops:  6
compiled vars:  !0 = $type, !1 = $text
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   41     0  E >   RECV                                             !0      
          1        RECV_INIT                                        !1      null
   42     2        INIT_STATIC_METHOD_CALL                                  'setData'
          3        SEND_VAR_EX                                              !0
          4        DO_FCALL                                      0          
   43     5      > RETURN                                                   null

End of function __construct

End of class A.

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
149.38 ms | 1404 KiB | 17 Q