fork download
  1. <?php
  2. $string = "some <_tag_> here";
  3. $string = preg_replace('~<_.+?_>~', '', $string);
  4. echo $string;
  5. ?>
Success #stdin #stdout 0.02s 23860KB
stdin
Standard input is empty
stdout
some  here