1

请创建一个 wap 论坛,我希望管理员能够从名为 mycodes 的数据库中添加 bbcodes,其列:id、name、code、html

Row1
Name: bold
Code: \[b\](.*?)\[/b]
Html: < b >$1< / b >

Row2
Name: undaline
Code: \[u\](.*?)\[/u]
Html: < u >$1< / u >

当我使用 preg replace 时,它​​仅在我有一行时才起作用,如果我有不止一行,它将不起作用,它只会解析粗体而不是下划线?

function myparse($text){
  $q = mysql_query("SELECT * FROM mycodes");
  while($row = mysql_fetch_array($q)) {
    $code=$row['code'];
    $html=$row['html']
    $Result=preg_replace('#'.$code.'#is', $html, $text);
    return $result;
  }
}

myparse("hey am [b]bold[/b] but he is [u]undalined[/u]");
4

3 回答 3

1

为什么要重新发明轮子:

http://www.christian-seiler.de/projekte/php/bbcode/index_en.html(也有一些替代品的链接)

甚至 PECL 库:http ://uk1.php.net/manual/en/book.bbcode.php

于 2012-10-24T10:09:59.837 回答
0

我在您的 myparse 函数中看不到任何循环您的代码行的内容。因此,根据您当前的代码,您需要一个循环来多次调用 preg_replace:

function myparse($text){
    // Loop through rows (this might be a database or whatever stores your rows.
    // Since your code doesn't tell us I'll assume it's an array for now
    foreach ($rows as $row) {
        $code=$row['code'];
        $html=$row['html'];
        $Result=preg_replace('#'.$code.'#is', $html, $text);
    }
}
于 2012-10-24T10:11:59.837 回答
0

您的代码中有几个错误。正确的功能应该是这样的:

function myparse($text){
    $q = mysql_query("SELECT * FROM mycodes");
    while($row = mysql_fetch_array($q)) {
        $code=$row['code'];
        $html=$row['html']
        $text=preg_replace('#'.$code.'#is', $html, $text);
    }
    return $text;
}

在您的代码中 - 实际上只使用了 mycodes 中的第一行。

于 2012-10-24T10:36:06.447 回答