我想知道是否有一种简单的方法可以将preg_replace
中的匹配模式用作替换值数组的索引。
e.g。
preg_replace("/\{[a-z_]*\}/i", "{$data_array[\1]}", $string);
搜索{xxx}并将其替换为$ data_array ['xxx']中的值,其中xxx是一种模式。
但是这个表达式不能用作无效的php。
我写了以下函数,但我想知道是否可以简单地完成它。我可以使用回调,但是我如何将$ data_array也传递给它?
function mailmerge($string, $data_array, $tags='{}')
{
$tag_start=$tags[0];
$tag_end =$tags[1];
if( (!stristr($string, $tag_start)) && (!stristr($string, $tag_end)) ) return $string;
while(list($key,$value)=each($data_array))
{
$patterns[$key]="/".preg_quote($tag_start.$key.$tag_end)."/";
}
ksort($patterns);
ksort($data_array);
return preg_replace($patterns, $data_array, $string);
}
答案 0 :(得分:9)
从我的脑海:
preg_replace_callback("/\{([a-z_]*)\}/i", function($m) use($data_array){
return $data_array[$m[1]];
}, $string);
注意:上述功能需要PHP 5.3 +。
答案 1 :(得分:1)
关联数组替换 - 如果未找到则保留匹配的片段:
$words=array("_saudation_"=>"Hello", "_animal_"=>"cat", "_animal_sound_"=>"MEooow");
$source=" _saudation_! My Animal is a _animal_ and it says _animal_sound_ , _no_match_";
echo (preg_replace_callback("/\b_(\w*)_\b/", function($match) use ($words) { if(isset($words[$match[0]])){
return ($words[$match[0]]);}else{
return($match[0]);}
}, $source));
//returns: Hello! My Animal is a cat and it says MEooow , _no_match_
*请注意,即使“_no_match_”缺少翻译,但在正则表达式中它会匹配,但是 保留它的钥匙。
答案 2 :(得分:0)
您可以使用preg_replace_callback并编写一个可以使用该数组索引的函数,否则您可以使用e
修饰符来评估替换字符串(但请注意e
不推荐使用修饰符,因此回调函数是更好的解决方案)。