fork(3) download
  1. <?php
  2. $input = 'sdfsdf sdfsdf fd<%MYSTRING123%>d12df fsdsgsg d';
  3. preg_match_all('/\[<%MYSTRING\](.*?)\[%>\]/', $input, $matches);
  4. var_dump($matches);
Success #stdin #stdout 0.01s 82944KB
stdin
Standard input is empty
stdout
array(2) {
  [0]=>
  array(0) {
  }
  [1]=>
  array(0) {
  }
}