我目前正在用PHP編寫一個函數來爲論壇引擎翻譯BBCodes。 現在我想添加一個[code]
- 標籤和我創建了以下功能:preg替換多個結果
$txt = preg_replace('#\[code\](.*)\[(.*)\[/code\]#isU', "<div class=\"bb_uncode\">$1[$2</div>", $txt);
(旁註:[
平等[)
這工作得很好,如果只有一個[
的[代碼中]標籤都有效,但它會忽略每一個。
是否有可能將此搜索模式應用於每個其他括號?