3v4l.org

run code in 300+ PHP versions simultaneously
<?php $variableName = 'MyVariable'; $variableName .= '900'; // Create new variable with the name defined in variable $variableName ${$variableName} = 'MyValue'; ${$variableName} .= '900'; //Outputs: string(7) "MyValue" var_dump($MyVariable); //Outputs: string(7) "MyValue" var_dump(${'MyVariable'});
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/XmLFt
function name:  (null)
number of ops:  13
compiled vars:  !0 = $variableName, !1 = $MyVariable
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    2     0  E >   ASSIGN                                                   !0, 'MyVariable'
    3     1        ASSIGN_OP                                     8          !0, '900'
    5     2        FETCH_W                      local               $4      !0
          3        ASSIGN                                                   $4, 'MyValue'
    6     4        FETCH_RW                     local               $6      !0
          5        ASSIGN_OP                                     8          $6, '900'
    8     6        INIT_FCALL                                               'var_dump'
          7        SEND_VAR                                                 !1
          8        DO_ICALL                                                 
   10     9        INIT_FCALL                                               'var_dump'
         10        SEND_VAR                                                 !1
         11        DO_ICALL                                                 
         12      > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
162.11 ms | 1394 KiB | 15 Q