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' ) { $CollectionData[] = $value; var_dump($CollectionData); } elseif( strtolower( $type ) === 'get' ) return self::$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 ) { DataCollector::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/nQuJN
function name:  (null)
number of ops:  29
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
   49    17        INIT_STATIC_METHOD_CALL                                  'DataCollector', 'setData'
         18        SEND_VAL_EX                                              '4'
         19        DO_FCALL                                      0          
   50    20        INIT_STATIC_METHOD_CALL                                  'dataHandler', 'setData'
         21        SEND_VAL_EX                                              '5'
         22        DO_FCALL                                      0          
   52    23        INIT_FCALL                                               'var_dump'
         24        INIT_STATIC_METHOD_CALL                                  'DataCollector', 'getCollectedData'
         25        DO_FCALL                                      0  $14     
         26        SEND_VAR                                                 $14
         27        DO_ICALL                                                 
         28      > RETURN                                                   1

Class setData:
Function setdata:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/nQuJN
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/nQuJN
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 = 13
Branch analysis from position: 7
1 jumps found. (Code = 42) Position 1 = 20
Branch analysis from position: 20
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 13
2 jumps found. (Code = 43) Position 1 = 18, Position 2 = 20
Branch analysis from position: 18
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 20
filename:       /in/nQuJN
function name:  collectedData
number of ops:  21
compiled vars:  !0 = $type, !1 = $value, !2 = $CollectionData
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                                         $3      
          5        IS_IDENTICAL                                             $3, 'set'
          6      > JMPZ                                                     ~4, ->13
   17     7    >   ASSIGN_DIM                                               !2
          8        OP_DATA                                                  !1
   18     9        INIT_FCALL                                               'var_dump'
         10        SEND_VAR                                                 !2
         11        DO_ICALL                                                 
         12      > JMP                                                      ->20
   20    13    >   INIT_FCALL                                               'strtolower'
         14        SEND_VAR                                                 !0
         15        DO_ICALL                                         $7      
         16        IS_IDENTICAL                                             $7, 'get'
         17      > JMPZ                                                     ~8, ->20
   21    18    >   FETCH_STATIC_PROP_R          unknown             ~9      'CollectionData'
         19      > RETURN                                                   ~9
   22    20    > > 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/nQuJN
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                                  'DataCollector', '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/nQuJN
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:
152.85 ms | 1396 KiB | 17 Q