Dynadot

PHP BBCODE Parser

Spaceship Spaceship
Watch
Impact
0
You can edit this to add any tags or bbcodes you like, for more information please see the original article.

Code:
    $bbcode = array(
      ‘[b]’ => ‘<strong>’,
      ‘[/b]’ => ‘</strong>’,
      ‘[i]’ => ‘<em>’,
      ‘[/i]’ => ‘</em>’,
      ‘[u]’ => ‘<u>’
      ‘[/u]’ => ‘</u>’
    );

    function bbcode($var) {
      $search = array_keys( $GLOBALS['bbcode'] );
      $var = str_replace( $search, $GLOBALS['bbcode'], $var );
      return $var;
    };

Original Article: PHP BBCODE Snippet
 
0
•••
The views expressed on this page by users and staff are their own, not those of NamePros.
  • The sidebar remains visible by scrolling at a speed relative to the page’s height.
Back