3v4l.org

run code in 300+ PHP versions simultaneously
<?php // Output using xdebug $ary = array('zero', 'one', 'two'); //array_pop($ary); //array_pop($ary); unset($ary[1]); unset($ary[2]); $bry = $ary; $ary[] = 'three'; $bry[] = 'three'; var_dump($ary, $bry, $ary == $bry); ?>
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/MQmW7
function name:  (null)
number of ops:  15
compiled vars:  !0 = $ary, !1 = $bry
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    3     0  E >   ASSIGN                                                   !0, <array>
    6     1        UNSET_DIM                                                !0, 1
    7     2        UNSET_DIM                                                !0, 2
    8     3        ASSIGN                                                   !1, !0
    9     4        ASSIGN_DIM                                               !0
          5        OP_DATA                                                  'three'
   10     6        ASSIGN_DIM                                               !1
          7        OP_DATA                                                  'three'
   11     8        INIT_FCALL                                               'var_dump'
          9        SEND_VAR                                                 !0
         10        SEND_VAR                                                 !1
         11        IS_EQUAL                                         ~6      !0, !1
         12        SEND_VAL                                                 ~6
         13        DO_ICALL                                                 
   12    14      > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
143.42 ms | 1394 KiB | 15 Q