Jump to content

[SOLVED] Need example on bb code replacing


Lautarox

Recommended Posts

A simple example of converting [ b ], [ i ], [ url=http://www.somesite.com ] to their respective html tags, using preg_replace():

 

<?php
function code_to_html($bbcode){
     $bbcode = htmlentities($bbcode); //convert all html tags to entities to prevent security problems (XSS)
     $searchFor = array('/\[b\](.*?)\[\/b\]/is', '/\[i\](.*?)\[\/i\]/is', '/\[url\=(.*?)\](.*?)\[\/url\]/is'); //the array to search for [ b ], [ i ] and [ url= ] codes
     $replaceWith = array('<b>$1</b>', '<i>$1</i>', '<a href="$1">$2</a>'); //the array to replace bbcodes with html tags
     $html = preg_replace($searchFor, $replaceWith, $bbcode);
     return $html;
}
//then you can call the function
$string = "[b]phpfreaks[/b] has a [i]very[/i] nice [url=http://www.phpfreaks.com/forums]forum[/url]";
echo code_to_html($string);
?>

 

That should give you the idea of using preg_replace() to replace bbcodes to html. The same idea involves any type of code you want to have, just add it in the $searchFor array.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.