3v4l.org

run code in 300+ PHP versions simultaneously
<?php trait setData { static function setData( $data ) { DataCollector::collectedData( 'set', $data ); } } trait dataHandler { use setData; private static function getCollectedData() { return DataCollector::collectedData( 'get' ); } private static function collectedData( $type, $value = NULL ) { if( strtolower( $type ) === 'set' ) { DataCollector::$CollectionData[] = $value; var_dump( DataCollector::$CollectionData ); } elseif( strtolower( $type ) === 'get' ) return DataCollector::$CollectionData; } } class DataCollector { use dataHandler { getCollectedData as public; collectedData as public; } private static $CollectionData = array(); } class Form { use setData {} } class Field extends Form { public function __construct( $type, $text = NULL ) { $this->setData( $type ); } } class A { use setData{} public function __construct( $type, $text = NULL ) { $this->setData( $type ); } } $Field1 = new Field( '1' ); $Field2 = new Field( '2' ); $A = new A( '3' ); DataCollector::setData('4'); dataHandler::setData('5'); var_dump( $A::collectedData( 'get' ), DataCollector::getCollectedData() );
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/ULOqQ
function name:  (null)
number of ops:  34
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        FETCH_CLASS                                   0  $14     !2
         25        INIT_STATIC_METHOD_CALL                                  $14, 'collectedData'
         26        SEND_VAL_EX                                              'get'
         27        DO_FCALL                                      0  $15     
         28        SEND_VAR                                                 $15
         29        INIT_STATIC_METHOD_CALL                                  'DataCollector', 'getCollectedData'
         30        DO_FCALL                                      0  $16     
         31        SEND_VAR                                                 $16
         32        DO_ICALL                                                 
         33      > RETURN                                                   1

Class setData:
Function setdata:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/ULOqQ
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/ULOqQ
function name:  getCollectedData
number of ops:  5
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  $0      
          3      > RETURN                                                   $0
   13     4*     > 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 = 15
Branch analysis from position: 7
1 jumps found. (Code = 42) Position 1 = 22
Branch analysis from position: 22
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 15
2 jumps found. (Code = 43) Position 1 = 20, Position 2 = 22
Branch analysis from position: 20
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 22
filename:       /in/ULOqQ
function name:  collectedData
number of ops:  23
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, ->15
   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_STATIC_PROP_R          unknown             ~6      'CollectionData'
         12        SEND_VAL                                                 ~6
         13        DO_ICALL                                                 
         14      > JMP                                                      ->22
   20    15    >   INIT_FCALL                                               'strtolower'
         16        SEND_VAR                                                 !0
         17        DO_ICALL                                         $8      
         18        IS_IDENTICAL                                             $8, 'get'
         19      > JMPZ                                                     ~9, ->22
   21    20    >   FETCH_STATIC_PROP_R          unknown             ~10     'CollectionData'
         21      > RETURN                                                   ~10
   22    22    > > 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/ULOqQ
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_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/ULOqQ
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_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:
164.08 ms | 1404 KiB | 17 Q