duanduan8439 2010-09-28 00:54
浏览 28
已采纳

BB代码问题PHP

Alright so I am using a little bbcode function for a forum I have, working well, so if, in example, I put

[b]Text[/b]

it will print Text in bold.

My issue is, if I have that code:

[b]
Text[/b]

Well it will not work, and just print that as it's right now.

Here is an example of the function I am 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 my question would be, what is necessary so the BBcode works with everything inside it, but no necessarily on the same line.

In example:

[b]




Text



[/b]

Would simply be

Text

Thank you for any help!

Alex

  • 写回答

3条回答 默认 最新

  • doupa2871 2010-09-28 00:56
    关注

    You need the multiline modifier, which makes your pattern something like #\[b\](.*?)\[/b\]#ms

    (note the trailing m)

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥20 wireshark抓不到vlan
  • ¥20 关于#stm32#的问题:需要指导自动酸碱滴定仪的原理图程序代码及仿真
  • ¥20 设计一款异域新娘的视频相亲软件需要哪些技术支持
  • ¥15 stata安慰剂检验作图但是真实值不出现在图上
  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来