Advertisement
Guest User

postear.php

a guest
Nov 9th, 2012
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.19 KB | None | 0 0
  1. /* Funcion php que combierte en bbcode el texto que llega de la BD*/
  2. function bbparse($mensaje) {
  3.       $bbcode = array();
  4.       $xhtml = array();
  5.       // Ponemos cada BBCode y su reemplazo
  6.       $bbcode[] = "[i]"; $xhtml[] = "<em>";
  7.      $bbcode[] = "[/i]"; $xhtml[] = "</em>";
  8.  
  9.      // Ponemos cada BBCode y su reemplazo
  10.      $bbcode[] = "[center]"; $xhtml[] = "<center>";
  11.      $bbcode[] = "[/center]"; $xhtml[] = "</center>";
  12.      
  13.      // Ponemos cada BBCode y su reemplazo
  14.      $bbcode[] = "[left]"; $xhtml[] = "<div align=left>";
  15.      $bbcode[] = "[/left]"; $xhtml[] = "</div>";
  16.      
  17.      // Ponemos cada BBCode y su reemplazo
  18.      $bbcode[] = "[right]"; $xhtml[] = "<div align=right>";
  19.      $bbcode[] = "[/right]"; $xhtml[] = "</div>";
  20.      
  21.      $bbcode[] = "[b]"; $xhtml[] = "<strong>";
  22.      $bbcode[] = "[/b]"; $xhtml[] = "</strong>";
  23.  
  24.      $bbcode[] = "[s]"; $xhtml[] = "<s>";
  25.      $bbcode[] = "[/s]"; $xhtml[] = "</s>";
  26.      
  27.      $bbcode[] = "[sup]"; $xhtml[] = "<sup>";
  28.      $bbcode[] = "[/sup]"; $xhtml[] = "</sup>";
  29.      
  30.      $bbcode[] = "[quote]"; $xhtml[] = "<blockquote><p>";
  31.      $bbcode[] = "[/quote]"; $xhtml[] = "</p></blockquote>";
  32.      
  33.      $bbcode[] = "[sub]"; $xhtml[] = "<sub>";
  34.      $bbcode[] = "[/sub]"; $xhtml[] = "</sub>";
  35.      
  36.      $bbcode[] = "[u]"; $xhtml[] = "<u>";
  37.      $bbcode[] = "[/u]"; $xhtml[] = "</u>";
  38.      
  39.      $bbcode[] = "[ul]"; $xhtml[] = "<ul>";
  40.      $bbcode[] = "[/ul]"; $xhtml[] = "</ul>";
  41.      
  42.      $bbcode[] = "[ol]"; $xhtml[] = "<ol>";
  43.      $bbcode[] = "[/ol]"; $xhtml[] = "</ol>";
  44.      
  45.      $bbcode[] = "[list][li]"; $xhtml[] = "<li>";
  46.      $bbcode[] = "[/li][/list]"; $xhtml[] = "</li>";
  47.      
  48.      $bbcode[] = "[url=http://"; $xhtml[] = "<a href='";
  49.      $bbcode[] = "]"; $xhtml[] = "<a href='";
  50.      $bbcode[] = "[/url]"; $xhtml[] = "'>Enlace</a>";
  51.  
  52.      $bbcode[] = "[img]http://"; $xhtml[] = "<img src='";
  53.      $bbcode[] = "[/img]"; $xhtml[] = "' />";
  54.  
  55.      $bbcode[] = "[color="; $xhtml[] = "<div style='color:";
  56.      $bbcode[] = "[/color]"; $xhtml[] = "</div>";
  57.  
  58.      $bbcode[] = "]"; $xhtml[] = ";'>"; /*esta linea iria en segundo lugar ,devido a bug queda tercera*/
  59.        
  60.      return str_replace($bbcode,$xhtml,$mensaje);
  61.    
  62.    }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement