Advertisement
Guest User

Untitled

a guest
Oct 15th, 2011
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.24 KB | None | 0 0
  1. function bbc($string){
  2.  
  3.     // All the default bbcode arrays.
  4.     $bbcode = array(
  5.     //Text Apperence
  6.                 '#\[b\](.*?)\[/b\]#si' => '<b>\\1</b>',
  7.                 '#\[i\](.*?)\[/i\]#si' => '<i>\\1</i>',
  8.                 '#\[u\](.*?)\[/u\]#si' => '<u>\\1</u>',
  9.                 '#\[s\](.*?)\[/s\]#si' => '<strike>\\1</strike>',
  10.     //Font Color
  11.                 '#\[color=(.*?)\](.*?)\[/color\]#si' => '<font color="\\1">\\2</font>',
  12.     //Text Effects
  13.                 '#\[bl\](.*?)\[/bl\]#si' => '<blink>\\1</blink>',
  14.                 '#\[marquee\](.*?)\[/marquee\]#si' => '<marquee>\\1</marquee>',
  15.     //Other
  16.                 '#\[code\](.*?)\[/code]#si' => '<code>\\1</code>',
  17.                 '#\[url=(.*?)\](.*?)\[/url]#si' => '<a href="\\1" rel="nofollow" target="_blank">\\2</a>',
  18.                 '#\[url](.*?)\[/url]#si' => '<a href="\\1" rel="nofollow" target="_blank">\\1</a>',
  19.                 '#\[quote\](.*?)\[/quote\]#si' => '<blockquote>\\1</blockquote>',
  20.                 '#\[img\](.*?)\[/img\]#si' => '<img src="\\1">',
  21.                 '#\[email\](.*?)\[/email\]#si' => '<a href="mailto:\\1">\\1</a>'
  22.                 );
  23.                 $output = preg_replace(array_keys($bbcode), array_values($bbcode), $string);
  24.                 return $output;
  25.  
  26. }
  27.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement