Ich habe zwei Arten von BBcode:
[附件]1234[/附件]
[attach=full]1234[/attach]
$message = 'this is message with attach [attach=full]1234[/attach]
Ich möchte alles in der Zeichenfolge entfernen und verwenden:
(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); } }
Dieser Code löscht [attach][/attach], aber nicht [attach=full][/attach]
=full
Seien Sie in der Nachricht.
使用
preg_replace()
,而不是preg_match_all()
。使用可选组来匹配
attach
后的可选=xxx
。