bbcode - BB Code issue PHP -
alright using little bbcode function forum have, working well, if, in example, put
[b]text[/b]
it print text in bold.
my issue is, if have code:
[b] text[/b]
well not work, , print it's right now.
here example of function using:
function bbcode ($string) { $search = array( '#\[b\](.*?)\[/b\]#', ); $replace = array( '<b>\\1</b>', ); return preg_replace($search , $replace, $string); }
then when echo'ing it:
.nl2br(stripslashes(bbcode($arr_thread_row[main_content]))).
so question be, necessary bbcode works inside it, no on same line.
in example:
[b] text [/b]
would be
text
thank help!
alex
you need multiline modifier, makes pattern #\[b\](.*?)\[/b\]#ms
(note trailing m
)
Comments
Post a Comment