PHP preg_replace three times with three different patterns? right or wrong?

后端 未结 5 1797
北海茫月
北海茫月 2020-12-30 07:43

A simple question: Is this the best way to do it?

$pattern1 = \"regexp1\";
$pattern2 = \"regexp2\";
$pattern3 = \"regexp3\";

$content = preg_replace($patter         


        
5条回答
  •  独厮守ぢ
    2020-12-30 08:12

    hope this example helping you to understand "find in array", and "replace from array"

    $pattern=array('1','2','3');
    $replace=array('one','two','tree');
    $content = preg_replace($pattern,$replace, $content);
    

提交回复
热议问题