Guest User

bbcode.php

a guest
Apr 10th, 2013
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.65 KB | None | 0 0
  1. <?php
  2. #bbcode.php by brennan 'thefatshizms' butler
  3.  
  4. class BBcode {
  5.    
  6.     public function BBcode_Message($input) {
  7.        
  8.         //search for these bbcodes
  9.         $search = array('/\[b\](.*?)\[\/b\]/is', '/\[i\](.*?)\[\/i\]/is', '/\[link=(.*?)\](.*?)\[\/link\]/is', '/\[list\](.*?)\[\/list\]/is', '/\[li\](.*?)\[\/li\]/is', '/\[size=(.*?)\](.*?)\[\/size\]/is', '/\[img\](.*?)\[\/img\]/is');
  10.        
  11.         //replace the bbcodes with this html
  12.        
  13.         $replace = array('<b>$1</b>', '<i>$1</i>', '<a href="$1">$2</a>', '<ul>$1</ul>', '<li>$1</li>', '<span style="font-size:$1px;">$2</span>', '<img src="$1" alt=""/>');
  14.        
  15.         return preg_replace($search, $replace, $input);
  16.    
  17.     }
  18.  
  19. }
  20.  
  21. ?>
Advertisement
Add Comment
Please, Sign In to add comment