替换和检索占位符值
有没有什么方法可以比下面的代码更有效地替换同一字符串中的一个值并检索另一个值,例如组合preg_replace()
和preg_match()
的方法?
$string = 'abc123';
$variable = '123';
$newString = preg_replace("/(abc)($variable)/",'$1$2xyz', $string);
preg_match("/(abc)($variable)/", $string, $matches);
$number = $matches[2];
解决方案
您可以一次调用preg_replace_callback()
并更新回调函数代码中$number
的值:
$string = 'abc123';
$variable = '123';
$number = NULL;
$newString = preg_replace_callback(
"/(abc)($variable)/",
function ($matches) use (& $number) {
$number = $matches[2];
return $matches[1].$matches[2].'xyz';
},
$string
);
我认为速度没有大的提高。唯一的优势可能是可读性。
相关文章