3v4l.org

run code in 300+ PHP versions simultaneously
<?php $re1=".*?"; # Non-greedy match on filler $re2="(\\[)"; # Any Single Character 1 $re3="(n)"; # Any Single Character 2 $re4="(i)"; # Any Single Character 3 $re5="(d)"; # Any Single Character 4 $re6="(:)"; # Any Single Character 5 $txt="iasduad iiabefibasdib [nid:112] oabsdo baosd [10] [n10]"; if ($c=preg_match_all ("/".$re1.$re2.$re3.$re4.$re5.$re6."/is", $txt, $matches)) { $c1=$matches[1][0]; $c2=$matches[2][0]; $c3=$matches[3][0]; $c4=$matches[4][0]; $c5=$matches[5][0]; print "($c1) ($c2) ($c3) ($c4) ($c5) \n"; }
Finding entry points
Branch analysis from position: 0
1 jumps found. (Code = 62) Position 1 = -2
filename:       /in/cB84O
function name:  (null)
number of ops:  4
compiled vars:  !0 = $re1, !1 = $re2, !2 = $re3
line      #* E I O op                           fetch          ext  return  operands
-------------------------------------------------------------------------------------
    1     0  E >   ASSIGN                                                   !0, '.%2A%3F'
    2     1        ASSIGN                                                   !1, '%28%5C%5B%29'
    3     2        ASSIGN                                                   !2, '%28n%29'
          3      > RETURN                                                   1

Generated using Vulcan Logic Dumper, using php 8.0.0


preferences:
137.51 ms | 937 KiB | 14 Q