3v4l.org

run code in 500+ PHP versions simultaneously
<?php $start = new DateTime('2011-12-02'); $start->modify('first day of this month'); $end = new DateTime('2012-05-06'); $end->modify('first day of next month'); $interval = DateInterval::createFromDateString('1 month'); $period = new DatePeriod($start, $interval, $end); foreach ($period as $dt) { $monthNum=$dt->format("m"); echo $dt->format("Y").date('F', mktime(0, 0, 0, $monthNum, 10)). PHP_EOL; }
Finding entry points
Branch analysis from position: 0
2 jumps found. (Code = 77) Position 1 = 25, Position 2 = 48
Branch analysis from position: 25
2 jumps found. (Code = 78) Position 1 = 26, Position 2 = 48
Branch analysis from position: 26
1 jumps found. (Code = 42) Position 1 = 25
Branch analysis from position: 25
Branch analysis from position: 48
1 jumps found. (Code = 62) Position 1 = -2
Branch analysis from position: 48
filename:       /in/iQ0rQ
function name:  (null)
number of ops:  50
compiled vars:  !0 = $start, !1 = $end, !2 = $interval, !3 = $period, !4 = $dt, !5 = $monthNum
line      #* E I O op                               fetch          ext  return  operands
-----------------------------------------------------------------------------------------
    2     0  E >   NEW                                                  $6      'DateTime'
          1        SEND_VAL_EX                                                  '2011-12-02'
          2        DO_FCALL                                          0          
          3        ASSIGN                                                       !0, $6
    3     4        INIT_METHOD_CALL                                             !0, 'modify'
          5        SEND_VAL_EX                                                  'first+day+of+this+month'
          6        DO_FCALL                                          0          
    4     7        NEW                                                  $10     'DateTime'
          8        SEND_VAL_EX                                                  '2012-05-06'
          9        DO_FCALL                                          0          
         10        ASSIGN                                                       !1, $10
    5    11        INIT_METHOD_CALL                                             !1, 'modify'
         12        SEND_VAL_EX                                                  'first+day+of+next+month'
         13        DO_FCALL                                          0          
    6    14        INIT_STATIC_METHOD_CALL                                      'DateInterval', 'createFromDateString'
         15        SEND_VAL                                                     '1+month'
         16        DO_FCALL                                          0  $14     
         17        ASSIGN                                                       !2, $14
    7    18        NEW                                                  $16     'DatePeriod'
         19        SEND_VAR_EX                                                  !0
         20        SEND_VAR_EX                                                  !2
         21        SEND_VAR_EX                                                  !1
         22        DO_FCALL                                          0          
         23        ASSIGN                                                       !3, $16
    9    24      > FE_RESET_R                                           $19     !3, ->48
         25    > > FE_FETCH_R                                                   $19, !4, ->48
   10    26    >   INIT_METHOD_CALL                                             !4, 'format'
         27        SEND_VAL_EX                                                  'm'
         28        DO_FCALL                                          0  $20     
         29        ASSIGN                                                       !5, $20
   11    30        INIT_METHOD_CALL                                             !4, 'format'
         31        SEND_VAL_EX                                                  'Y'
         32        DO_FCALL                                          0  $22     
         33        INIT_FCALL                                                   'date'
         34        SEND_VAL                                                     'F'
         35        INIT_FCALL                                                   'mktime'
         36        SEND_VAL                                                     0
         37        SEND_VAL                                                     0
         38        SEND_VAL                                                     0
         39        SEND_VAR                                                     !5
         40        SEND_VAL                                                     10
         41        DO_ICALL                                             $23     
         42        SEND_VAR                                                     $23
         43        DO_ICALL                                             $24     
         44        CONCAT                                               ~25     $22, $24
         45        CONCAT                                               ~26     ~25, '%0A'
         46        ECHO                                                         ~26
    9    47      > JMP                                                          ->25
         48    >   FE_FREE                                                      $19
   12    49      > RETURN                                                       1

Generated using Vulcan Logic Dumper, using php 8.5.0


preferences:
171.77 ms | 2993 KiB | 15 Q