我有两种类型的 bbcode:
[附件]1234[/附件]
[attach=full]1234[/attach]
$message = 'this is message with attach [attach=full]1234[/attach]
我想删除字符串中的所有内容并使用:
(preg_match_all('/\[ATTACH((.*?)\](.+?)\[\/ATTACH\]/i', $message, $out, PREG_SET_ORDER))
if (preg_match_all('/\[ATTACH((.*?)\](.+?)\[\/ATTACH\]/i', $message, $out, PREG_SET_ORDER)) { for ($i=0;$i<count($out);$i++) { $replace_src[] = $out[$i][0]; $replace_str[] = $out[$i][1]; $newMessage = str_ireplace($replace_src, $replace_str, $message); } }
此代码删除[attach][/attach],但不删除[attach=full][/attach]
=full
存在于消息中。
P粉1387117942024-04-03 16:14:32
使用preg_replace()
,而不是preg_match_all()
。
使用可选组来匹配 attach
后的可选 =xxx
。
$newMessage = preg_replace('/\[ATTACH(?:=.*?)?\](.+?)\[\/ATTACH\]/i', '', $message);