3v4l.org

run code in 300+ PHP versions simultaneously
<?php class MyIterator implements Iterator { private $var = array(); public function __construct($array) { if (is_array($array)) { $this->var = $array; } } public function rewind() { echo "rewinding\n"; reset($this->var); } public function current() { $var = current($this->var); echo "current: $var\n"; return $var; } public function key() { $var = key($this->var); echo "key: $var\n"; return $var; } public function next() { $var = next($this->var); echo "next: $var\n"; return $var; } public function valid() { $key = key($this->var); $var = ($key !== NULL && $key !== FALSE); echo "valid: $var\n"; return $var; } } $values = array(1,2,3); $it = new MyIterator($values); class MyCollection implements IteratorAggregate { private $items = array(); private $count = 0; // Required definition of interface IteratorAggregate public function getIterator() { return new MyIterator($this->items); } public function add($value) { $this->items[$this->count++] = $value; } } $coll = new MyCollection(); $coll->add('value 1'); $coll->add('value 2'); $coll->add('value 3'); foreach ($coll as $key => $val) { echo "key/value: [$key -> $val]\n\n"; } ?>
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 77) Position 1 = 20, Position 2 = 29
Branch analysis from position: 20
2 jumps found. (Code = 78) Position 1 = 21, Position 2 = 29
Branch analysis from position: 21
1 jumps found. (Code = 42) Position 1 = 20
Branch analysis from position: 20
Branch analysis from position: 29
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 29
filename:       /in/cNNqs
function name:  (null)
number of ops:  31
compiled vars:  !0 = $values, !1 = $it, !2 = $coll, !3 = $val, !4 = $key
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    2     0  E >   DECLARE_CLASS                                            'myiterator'
   50     1        ASSIGN                                                   !0, <array>
   51     2        NEW                                              $6      'MyIterator'
          3        SEND_VAR_EX                                              !0
          4        DO_FCALL                                      0          
          5        ASSIGN                                                   !1, $6
   52     6        DECLARE_CLASS                                            'mycollection'
   67     7        NEW                                              $9      'MyCollection'
          8        DO_FCALL                                      0          
          9        ASSIGN                                                   !2, $9
   68    10        INIT_METHOD_CALL                                         !2, 'add'
         11        SEND_VAL_EX                                              'value+1'
         12        DO_FCALL                                      0          
   69    13        INIT_METHOD_CALL                                         !2, 'add'
         14        SEND_VAL_EX                                              'value+2'
         15        DO_FCALL                                      0          
   70    16        INIT_METHOD_CALL                                         !2, 'add'
         17        SEND_VAL_EX                                              'value+3'
         18        DO_FCALL                                      0          
   72    19      > FE_RESET_R                                       $15     !2, ->29
         20    > > FE_FETCH_R                                       ~16     $15, !3, ->29
         21    >   ASSIGN                                                   !4, ~16
   73    22        ROPE_INIT                                     5  ~19     'key%2Fvalue%3A+%5B'
         23        ROPE_ADD                                      1  ~19     ~19, !4
         24        ROPE_ADD                                      2  ~19     ~19, '+-%3E+'
         25        ROPE_ADD                                      3  ~19     ~19, !3
         26        ROPE_END                                      4  ~18     ~19, '%5D%0A%0A'
         27        ECHO                                                     ~18
   72    28      > JMP                                                      ->20
         29    >   FE_FREE                                                  $15
   75    30      > RETURN                                                   1

Class MyIterator:
Function __construct:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 43) Position 1 = 3, Position 2 = 5
Branch analysis from position: 3
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 5
filename:       /in/cNNqs
function name:  __construct
number of ops:  6
compiled vars:  !0 = $array
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    6     0  E >   RECV                                             !0      
    8     1        TYPE_CHECK                                  128          !0
          2      > JMPZ                                                     ~1, ->5
    9     3    >   ASSIGN_OBJ                                               'var'
          4        OP_DATA                                                  !0
   11     5    > > RETURN                                                   null

End of function __construct

Function rewind:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/cNNqs
function name:  rewind
number of ops:  6
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   15     0  E >   ECHO                                                     'rewinding%0A'
   16     1        INIT_FCALL                                               'reset'
          2        FETCH_OBJ_W                                      $0      'var'
          3        SEND_REF                                                 $0
          4        DO_ICALL                                                 
   17     5      > RETURN                                                   null

End of function rewind

Function current:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/cNNqs
function name:  current
number of ops:  11
compiled vars:  !0 = $var
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   21     0  E >   INIT_FCALL                                               'current'
          1        FETCH_OBJ_R                                      ~1      'var'
          2        SEND_VAL                                                 ~1
          3        DO_ICALL                                         $2      
          4        ASSIGN                                                   !0, $2
   22     5        ROPE_INIT                                     3  ~5      'current%3A+'
          6        ROPE_ADD                                      1  ~5      ~5, !0
          7        ROPE_END                                      2  ~4      ~5, '%0A'
          8        ECHO                                                     ~4
   23     9      > RETURN                                                   !0
   24    10*     > RETURN                                                   null

End of function current

Function key:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/cNNqs
function name:  key
number of ops:  11
compiled vars:  !0 = $var
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   28     0  E >   INIT_FCALL                                               'key'
          1        FETCH_OBJ_R                                      ~1      'var'
          2        SEND_VAL                                                 ~1
          3        DO_ICALL                                         $2      
          4        ASSIGN                                                   !0, $2
   29     5        ROPE_INIT                                     3  ~5      'key%3A+'
          6        ROPE_ADD                                      1  ~5      ~5, !0
          7        ROPE_END                                      2  ~4      ~5, '%0A'
          8        ECHO                                                     ~4
   30     9      > RETURN                                                   !0
   31    10*     > RETURN                                                   null

End of function key

Function next:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/cNNqs
function name:  next
number of ops:  11
compiled vars:  !0 = $var
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   35     0  E >   INIT_FCALL                                               'next'
          1        FETCH_OBJ_W                                      $1      'var'
          2        SEND_REF                                                 $1
          3        DO_ICALL                                         $2      
          4        ASSIGN                                                   !0, $2
   36     5        ROPE_INIT                                     3  ~5      'next%3A+'
          6        ROPE_ADD                                      1  ~5      ~5, !0
          7        ROPE_END                                      2  ~4      ~5, '%0A'
          8        ECHO                                                     ~4
   37     9      > RETURN                                                   !0
   38    10*     > RETURN                                                   null

End of function next

Function valid:
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 46) Position 1 = 7, Position 2 = 9
Branch analysis from position: 7
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 9
filename:       /in/cNNqs
function name:  valid
number of ops:  16
compiled vars:  !0 = $key, !1 = $var
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   42     0  E >   INIT_FCALL                                               'key'
          1        FETCH_OBJ_R                                      ~2      'var'
          2        SEND_VAL                                                 ~2
          3        DO_ICALL                                         $3      
          4        ASSIGN                                                   !0, $3
   43     5        TYPE_CHECK                                  1020  ~5      !0
          6      > JMPZ_EX                                          ~5      ~5, ->9
          7    >   TYPE_CHECK                                  1018  ~6      !0
          8        BOOL                                             ~5      ~6
          9    >   ASSIGN                                                   !1, ~5
   44    10        ROPE_INIT                                     3  ~9      'valid%3A+'
         11        ROPE_ADD                                      1  ~9      ~9, !1
         12        ROPE_END                                      2  ~8      ~9, '%0A'
         13        ECHO                                                     ~8
   45    14      > RETURN                                                   !1
   46    15*     > RETURN                                                   null

End of function valid

End of class MyIterator.

Class MyCollection:
Function getiterator:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/cNNqs
function name:  getIterator
number of ops:  7
compiled vars:  none
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   59     0  E >   NEW                                              $0      'MyIterator'
          1        CHECK_FUNC_ARG                                           
          2        FETCH_OBJ_FUNC_ARG                               $1      'items'
          3        SEND_FUNC_ARG                                            $1
          4        DO_FCALL                                      0          
          5      > RETURN                                                   $0
   60     6*     > RETURN                                                   null

End of function getiterator

Function add:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/cNNqs
function name:  add
number of ops:  6
compiled vars:  !0 = $value
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
   62     0  E >   RECV                                             !0      
   63     1        POST_INC_OBJ                                     ~2      'count'
          2        FETCH_OBJ_W                                      $1      'items'
          3        ASSIGN_DIM                                               $1, ~2
          4        OP_DATA                                                  !0
   64     5      > RETURN                                                   null

End of function add

End of class MyCollection.

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
155.1 ms | 1408 KiB | 21 Q