3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface DataTransferObject { public static function fromParams(array $params); public function asArray(); } trait DataTransferTrait { private $mutable; private function __construct(array $params) { foreach ($params as $key => $value) { $this->{'set' . str_replace(' ', '', ucwords(str_replace('_', ' ', $key)))}($value); } unset($this->mutable); } public static function fromParams(array $params) { return new static($params); } public function asArray() { return get_object_vars($this); } public function __call($method, $args) { if (property_exists($this->mutable) && substr($method, 0, 3) == 'set' && property_exists($this, lcfirst(substr($method, 3)))) { $this->{lcfirst(substr($method, 3))} = reset($args); } } } abstract class Command { } final class MyCommand extends Command implements DataTransferObject { use DataTransferTrait; private $foo; private $bar; private function setBar($value) { $this->bar = $value; } } $foo = MyCommand::fromParams(array('foo' => 'foo', 'bar' => 'bar', 'meh' => 'meh')); $foo->setFoo('newfoo'); $foo->setDog('dog'); var_dump($foo);
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/Li6aZ
function name:  (null)
number of ops:  15
compiled vars:  !0 = $foo
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   48     0  E >   DECLARE_CLASS                                            'mycommand', 'command'
   61     1        INIT_STATIC_METHOD_CALL                                  'MyCommand', 'fromParams'
          2        SEND_VAL_EX                                              <array>
          3        DO_FCALL                                      0  $1      
          4        ASSIGN                                                   !0, $1
   63     5        INIT_METHOD_CALL                                         !0, 'setFoo'
          6        SEND_VAL_EX                                              'newfoo'
          7        DO_FCALL                                      0          
   64     8        INIT_METHOD_CALL                                         !0, 'setDog'
          9        SEND_VAL_EX                                              'dog'
         10        DO_FCALL                                      0          
   66    11        INIT_FCALL                                               'var_dump'
         12        SEND_VAR                                                 !0
         13        DO_ICALL                                                 
         14      > RETURN                                                   1

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

End of function fromparams

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

End of function asarray

End of class DataTransferObject.

Class DataTransferTrait:
Function __construct:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 77) Position 1 = 2, Position 2 = 22
Branch analysis from position: 2
2 jumps found. (Code = 78) Position 1 = 3, Position 2 = 22
Branch analysis from position: 3
1 jumps found. (Code = 42) Position 1 = 2
Branch analysis from position: 2
Branch analysis from position: 22
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 22
filename:       /in/Li6aZ
function name:  __construct
number of ops:  25
compiled vars:  !0 = $params, !1 = $value, !2 = $key
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   15     0  E >   RECV                                             !0      
   17     1      > FE_RESET_R                                       $3      !0, ->22
          2    > > FE_FETCH_R                                       ~4      $3, !1, ->22
          3    >   ASSIGN                                                   !2, ~4
   19     4        INIT_FCALL                                               'str_replace'
          5        SEND_VAL                                                 '+'
          6        SEND_VAL                                                 ''
          7        INIT_FCALL                                               'ucwords'
          8        INIT_FCALL                                               'str_replace'
          9        SEND_VAL                                                 '_'
         10        SEND_VAL                                                 '+'
         11        SEND_VAR                                                 !2
         12        DO_ICALL                                         $6      
         13        SEND_VAR                                                 $6
         14        DO_ICALL                                         $7      
         15        SEND_VAR                                                 $7
         16        DO_ICALL                                         $8      
         17        CONCAT                                           ~9      'set', $8
         18        INIT_METHOD_CALL                                         ~9
         19        SEND_VAR_EX                                              !1
         20        DO_FCALL                                      0          
   17    21      > JMP                                                      ->2
         22    >   FE_FREE                                                  $3
   22    23        UNSET_OBJ                                                'mutable'
   23    24      > RETURN                                                   null

End of function __construct

Function fromparams:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/Li6aZ
function name:  fromParams
number of ops:  6
compiled vars:  !0 = $params
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   25     0  E >   RECV                                             !0      
   27     1        NEW                          static              $1      
          2        SEND_VAR_EX                                              !0
          3        DO_FCALL                                      0          
          4      > RETURN                                                   $1
   28     5*     > RETURN                                                   null

End of function fromparams

Function asarray:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/Li6aZ
function name:  asArray
number of ops:  6
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   32     0  E >   INIT_FCALL                                               'get_object_vars'
          1        FETCH_THIS                                       ~0      
          2        SEND_VAL                                                 ~0
          3        DO_ICALL                                         $1      
          4      > RETURN                                                   $1
   33     5*     > RETURN                                                   null

End of function asarray

Function __call:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 46) Position 1 = 7, Position 2 = 14
Branch analysis from position: 7
2 jumps found. (Code = 46) Position 1 = 15, Position 2 = 28
Branch analysis from position: 15
2 jumps found. (Code = 43) Position 1 = 29, Position 2 = 41
Branch analysis from position: 29
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 41
Branch analysis from position: 28
Branch analysis from position: 14
filename:       /in/Li6aZ
function name:  __call
number of ops:  42
compiled vars:  !0 = $method, !1 = $args
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   35     0  E >   RECV                                             !0      
          1        RECV                                             !1      
   37     2        INIT_FCALL                                               'property_exists'
          3        FETCH_OBJ_R                                      ~2      'mutable'
          4        SEND_VAL                                                 ~2
          5        DO_ICALL                                         $3      
          6      > JMPZ_EX                                          ~4      $3, ->14
          7    >   INIT_FCALL                                               'substr'
          8        SEND_VAR                                                 !0
          9        SEND_VAL                                                 0
         10        SEND_VAL                                                 3
         11        DO_ICALL                                         $5      
         12        IS_EQUAL                                         ~6      $5, 'set'
         13        BOOL                                             ~4      ~6
         14    > > JMPZ_EX                                          ~4      ~4, ->28
         15    >   INIT_FCALL                                               'property_exists'
         16        FETCH_THIS                                       ~7      
         17        SEND_VAL                                                 ~7
         18        INIT_FCALL                                               'lcfirst'
         19        INIT_FCALL                                               'substr'
         20        SEND_VAR                                                 !0
         21        SEND_VAL                                                 3
         22        DO_ICALL                                         $8      
         23        SEND_VAR                                                 $8
         24        DO_ICALL                                         $9      
         25        SEND_VAR                                                 $9
         26        DO_ICALL                                         $10     
         27        BOOL                                             ~4      $10
         28    > > JMPZ                                                     ~4, ->41
   38    29    >   INIT_FCALL                                               'lcfirst'
         30        INIT_FCALL                                               'substr'
         31        SEND_VAR                                                 !0
         32        SEND_VAL                                                 3
         33        DO_ICALL                                         $11     
         34        SEND_VAR                                                 $11
         35        DO_ICALL                                         $12     
         36        INIT_FCALL                                               'reset'
         37        SEND_REF                                                 !1
         38        DO_ICALL                                         $14     
         39        ASSIGN_OBJ                                               $12
         40        OP_DATA                                                  $14
   40    41    > > RETURN                                                   null

End of function __call

End of class DataTransferTrait.

Class Command: [no user functions]
Class MyCommand:
Function setbar:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/Li6aZ
function name:  setBar
number of ops:  4
compiled vars:  !0 = $value
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   55     0  E >   RECV                                             !0      
   57     1        ASSIGN_OBJ                                               'bar'
          2        OP_DATA                                                  !0
   58     3      > RETURN                                                   null

End of function setbar

End of class MyCommand.

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
158.38 ms | 1408 KiB | 29 Q