我使用以下方法对str_replace做了类似的事情:

$string = $url;
$patterns = array();
    $patterns[0] = 'searchforme';
    $patterns[1] = 'searchforme1';
    $patterns[2] = 'searchforme2';
$replacements = array();
    $replacements[0] = 'replacewithme';
    $replacements[1] = 'replacewithme1';
    $replacements[2] = 'replacewithme2';
$searchReplace = str_replace($patterns, $replacements, $string);

我将如何使用preg_replace做类似的事情?

我建立了一个非常简单的小型css解析器,该解析器在围绕CSS属性的注释中搜索特定标签,并将其替换为新数据。
$stylesheet = file_get_contents('temp/'.$user.'/css/mobile.css');

$cssTag = 'bodybg';
$stylesheet = preg_replace("/(\/\*".$cssTag."\*\/).*?(\/\*\/".$cssTag."\*\/)/i", "\\1 background: $bg url(../images/bg.png) repeat-x; \\2", $stylesheet);

file_put_contents('temp/'.$user.'/css/mobile.css',''.$stylesheet.'');

我有多个“cssTag”,它们都需要唯一的CSS替换为(背景,颜色,字体大小等),这就是为什么我要寻找一种类似于上述str_replace的方法。

最佳答案

preg_replace可以像str_replace一样接受数组

$string = 'I have a match1 and a match3, and here\'s a match2';
$find = ['/match1/', '/match2/'];
$replace = ['foo', 'bar'];

$result = preg_replace($find, $replace, $string);

09-11 19:19