Lautarox Posted August 23, 2008 Share Posted August 23, 2008 I'm not really very familiarized with preg_replace and preg_match, I want to know how to use preg_replace to replace like and keep the information between, thanks. Link to comment https://forums.phpfreaks.com/topic/121006-solved-need-example-on-bb-code-replacing/ Share on other sites More sharing options...
Fadion Posted August 23, 2008 Share Posted August 23, 2008 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. Link to comment https://forums.phpfreaks.com/topic/121006-solved-need-example-on-bb-code-replacing/#findComment-623781 Share on other sites More sharing options...
The Little Guy Posted August 23, 2008 Share Posted August 23, 2008 Here is an example: http://phpsnips.com/snippet.php?id=41 Link to comment https://forums.phpfreaks.com/topic/121006-solved-need-example-on-bb-code-replacing/#findComment-623783 Share on other sites More sharing options...
Lautarox Posted August 23, 2008 Author Share Posted August 23, 2008 =O thanks a lot, i was really confused about replacing the website bbcode, but now it's really clear, thanks for your time Link to comment https://forums.phpfreaks.com/topic/121006-solved-need-example-on-bb-code-replacing/#findComment-623799 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.