fork download
  1. <?php
  2.  
  3. $str = '[texttext]texttext[gjgjgjg][some]texttexttext[/some]';
  4.  
  5. $bb_codes = array(
  6. '#\[some\](.*?)\[/some\]#i'
  7. );
  8.  
  9. $html_tags = array(
  10. '<span>$1</span>'
  11. );
  12.  
  13. $str = preg_replace($bb_codes, $html_tags, $str);
  14.  
  15. echo $str;
  16.  
  17. ?>
Success #stdin #stdout 0.02s 24144KB
stdin
Standard input is empty
stdout
[texttext]texttext[gjgjgjg]<span>texttexttext</span>