获取[code][/code]之间的内容并应用更改

2022-07-01 00:00:00 regex php preg-replace

我想创建代码框,我可以在其中应用更改。如果我在这些[code][/code]中有$var= "word";,我会将$var更改为红色,将"word"更改为绿色。

我使用preg_replace选择了[code][/code]之间的内容。

$codebox = preg_replace("/[code](.*?)[/code]/","$1",$string);

问题是,使用preg_place我可以进行外部更改(对整个代码)。我想对[code][/code]中的内容进行更改。喜欢:背景颜色,所有文本颜色,所有文本字体,所有文本字体粗细等。这意味着我需要将其取出、应用更改,然后再放回原处。

我希望能够在$1而不是$string上使用str_replacepreg_replace函数。

例如将"word"改为绿色。我将使用

preg_replace("/(".*?")/","<span style='color: #090;'>$1</span>",$string)

并且我不能在preg_replace内部使用preg_replace,可以吗? 我不知道是我在这里使用了错误的函数,还是有方法可以做到这一点。

你可能会发现我的句型不对,纠正我,我昨天才学会的。


解决方案

使用preg_replace_callback:

$string = '[code]$var = "word";[/code]';
$codebox = preg_replace_callback("/[code](.*?)[/code]/",function($m){
    // The following replacements are just a demo
    $m[1] = preg_replace('/"([^"]+)"/', '"<span style="color:#0D0;">$1</span>"', $m[1]); // green value
    $m[1] = preg_replace('/($w+)/', '<span style="color:#F00;">$1</span>', $m[1]); // Red var name
    $m[1] = str_replace(' = ', '<span style="color:#00F;"> = </span>', $m[1]); // blue = sign
    return $m[1];
},$string);
echo $codebox;

Online demo。

相关文章