PHP – 用名为string的变量替换字符串

前端之家收集整理的这篇文章主要介绍了PHP – 用名为string的变量替换字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
所以字符串是这样的:
"bla bla bla {VARIABLE} bla bla"

当我在函数中的某个地方使用这个字符串时,我想用$variable(或任何其他包含在{} charcters中的大写字符串)替换{VARIABLE}. $variable(和任何其他变量)将在该函数内定义

我能这样做吗?

$TEST = 'one';
$THING = 'two';
$str = "this is {TEST} a {THING} to test";

$result = preg_replace('/\{([A-Z]+)\}/e',"$$1",$str);
原文链接:https://www.f2er.com/php/133926.html

猜你在找的PHP相关文章