functions.php 516 B

1234567891011121314
  1. <?php
  2. function applyBB($text)
  3. {
  4. $text=htmlentities($text);
  5. $text = preg_replace("/\[b\](.*)\[\/b\]/Usi", "<b>\\1</b>", $text);
  6. $text = preg_replace("/\[i\](.*)\[\/i\]/Usi", "<i>\\1</i>", $text);
  7. $text = preg_replace("/\[u\](.*)\[\/u\]/Usi", "<u>\\1</u>", $text);
  8. $text = preg_replace("/\[color=(.*)\](.*)\[\/color\]/Usi", "<span style=\"color:\\1\">\\2</span>", $text);
  9. $text = preg_replace("/\[hyper=(.*)\](.*)\[\/hyper\]/Usi", "<a href=\"index.php?ID=\\1\">\\2</a>", $text);
  10. return $text;
  11. }
  12. ?>