请创建一个 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]");