好的,我有一个字符串如下:
$disallowedBBC = 'abbr|acronym|anchor|bdo|black|blue|br|color|email|flash|font|ftp|glow|green|html|hr|img|iurl|li|list|ltr|url|quote';
而不是preg_replace
实际字符串(变量)上的a 应该摆脱根据变量$message
不允许的所有 bbc 代码:$disallowedBBC
$message = preg_replace("/\[($disallowedBBC)[^]]*](.*?)\[\/($disallowedBBC)\]/is", "$2", $message);
但是,由于某种原因,[hr]
标签正在通过这个 preg_replace。所以,在这种情况下:
$message = '[hr]Test';
它输出[hr]
标签,但应该删除它。我的正则表达式有什么问题?
基本上...
如何更改它以完全删除所有 [hr] 和/或 [hr]Test[/hr]?但也需要摆脱 [url=http://someurl.com]Some Url[/url] 的实例。它应该[color=red]
从字符串中删除,如下所示:[color=red]Testing
例如,它需要去掉[{tag}]
并且如果它有一个结束标签[/{tag}]
,但如果没有结束标签,它需要去掉开始标签,反之亦然。它应该能够捕获括号内 {tag} 内的任何内容,例如: [quote author=Solomon time=7834783470]Just a quote here[/quote] Additional text here...
所以,这应该输出: Just a quote here Additional text here...