3v4l.org

run code in 300+ PHP versions simultaneously
<?php $test = "Test test1"; $match = preg_replace('/(?<=^|[\x09\x20\x2D])./e', 'strtoupper("\0")', $test); var_dump($match); $match = preg_replace_callback('/(?<=^|[\x09\x20\x2D])./', function($matches) {return strtoupper($matches[0]);}, $test); var_dump($match);
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/9ZLrq
function name:  (null)
number of ops:  21
compiled vars:  !0 = $test, !1 = $match
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    3     0  E >   ASSIGN                                                   !0, 'Test%09test1'
    5     1        INIT_FCALL                                               'preg_replace'
          2        SEND_VAL                                                 '%2F%28%3F%3C%3D%5E%7C%5B%5Cx09%5Cx20%5Cx2D%5D%29.%2Fe'
          3        SEND_VAL                                                 'strtoupper%28%22%5C0%22%29'
          4        SEND_VAR                                                 !0
          5        DO_ICALL                                         $3      
          6        ASSIGN                                                   !1, $3
    6     7        INIT_FCALL                                               'var_dump'
          8        SEND_VAR                                                 !1
          9        DO_ICALL                                                 
    9    10        INIT_FCALL                                               'preg_replace_callback'
         11        SEND_VAL                                                 '%2F%28%3F%3C%3D%5E%7C%5B%5Cx09%5Cx20%5Cx2D%5D%29.%2F'
         12        DECLARE_LAMBDA_FUNCTION                                  '%00%7Bclosure%7D%2Fin%2F9ZLrq%3A9%240'
         13        SEND_VAL                                                 ~6
         14        SEND_VAR                                                 !0
         15        DO_ICALL                                         $7      
         16        ASSIGN                                                   !1, $7
   10    17        INIT_FCALL                                               'var_dump'
         18        SEND_VAR                                                 !1
         19        DO_ICALL                                                 
         20      > RETURN                                                   1

Function %00%7Bclosure%7D%2Fin%2F9ZLrq%3A9%240:
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/9ZLrq
function name:  {closure}
number of ops:  7
compiled vars:  !0 = $matches
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    9     0  E >   RECV                                             !0      
          1        INIT_FCALL                                               'strtoupper'
          2        FETCH_DIM_R                                      ~1      !0, 0
          3        SEND_VAL                                                 ~1
          4        DO_ICALL                                         $2      
          5      > RETURN                                                   $2
          6*     > RETURN                                                   null

End of function %00%7Bclosure%7D%2Fin%2F9ZLrq%3A9%240

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
157.55 ms | 1396 KiB | 21 Q