我有兩種類型的 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);