可能重复:
php regex [b] to <b>
我正在使用正则表达式,我是一个绝对的正则表达式菜鸟。尝试将HTML转换回'BBCode'时,我看不出有什么问题。
有人可以看一下'unquote'功能并告诉我我犯的明显错误吗? (我知道这很明显,因为我总能找到不明显的错误)
注意:我没有使用递归正则表达式,因为我无法理解它并且已经开始这样整理报价所以它们是嵌套的。
<?php
function quote($str){
$str = preg_replace('@\[(?i)quote=(.*?)\](.*?)@si', '<div class="quote"><div class="quote-title">\\1 wrote:</div><div class="quote-inner">\\2', $str);
$str = preg_replace('@\[/(?i)quote\]@si', '</div></div>', $str);
return $str;
}
function unquote($str){
$str = preg_replace('@\<(?i)div class="quote"\>\<(?i)div class="quote_title"\>(.*?)wrote:\</(?i)div\><(?i)div class="quote-inner"\>(.*?)@si', '[quote=\\1]\\2', $str);
$str = preg_replace('@\</(?i)div\></(?i)div\>@si', '[/quote]', $str);
}
?>
这只是一些帮助测试它的代码:
<html>
<head>
<style>
body {
font-family: sans-serif;
}
.quote {
background: rgba(51,153,204,0.4) url(../img/diag_1px.png);
border: 1px solid rgba(116,116,116,0.36);
padding: 5px;
}
.quote-title, .quote_title {
font-size: 18px;
margin: 5px;
}
.quote-inner {
margin: 10px;
}
</style>
</head>
<body>
<?php
$quote_text = '[quote=VCMG][quote=2xAA]DO RECURSIVE QUOTES WORK?[/quote]I have no idea.[/quote]';
$quoted = quote($quote_text);
echo $quoted.'<br><br>'.unquote($quoted); ?>
</body>
先谢谢,Sam。
答案 0 :(得分:3)
好吧,您可以先将php类设置为quote-title
或quote_title
,但要保持一致。
然后,在你的第二个函数中添加一个return $str;
,你应该就在那里。
你可以简化你的正则表达式:
function quote($str){
$str = preg_replace('@\[quote=(.*)\]@siU', '<div class="quote"><div class="quote-title">\\1 wrote:</div><div class="quote-inner">', $str);
$str = preg_replace('@\[/quote\]@si', '</div></div>', $str);
return $str;
}
function unquote($str){
$str = preg_replace('@<div class="quote"><div class="quote-title">(.*) wrote:</div><div class="quote-inner">@siU', '[quote=\\1]', $str);
$str = preg_replace('@</div></div>@si', '[/quote]', $str);
return $str;
}
但要注意用不同的调用替换引号的开始和结束标记。如果您碰巧有其他bbcode创建</div></div>
代码,我会认为unquote会产生一些奇怪的行为。
答案 1 :(得分:0)
就个人而言,我利用了生成的HTML基本上是这样的事实:
<div class="quote">Blah <div class="quote">INCEPTION!</div> More blah</div>
反复运行正则表达式,直到没有更多匹配项:
do {
$str = preg_replace( REGEX , REPLACE , $str , -1 , $c);
} while($c > 0);
此外,将其作为一个正则表达式来简化:
'(\[quote=(.*?)\](.*?)\[/quote\])is'
'<div class="quote"><div class="quote-title">$1 wrote:</div><div class="quote-inner">$1</div></div>'