所以字符串是这样的:
"bla bla bla {VARIABLE} bla bla"
当我在函数中的某处使用此字符串时,我想用 $ variable (或包含在{} charcters中的任何其他大写字符串)替换 {VARIABLE} 。 $ variable(和任何其他变量)将在该函数内定义
我可以这样做吗?
答案 0 :(得分:13)
$TEST = 'one';
$THING = 'two';
$str = "this is {TEST} a {THING} to test";
$result = preg_replace('/\{([A-Z]+)\}/e', "$$1", $str);
答案 1 :(得分:13)
使用正则表达式查找所有替换,然后迭代结果并替换它们。请务必仅允许您想要公开的变量。
// white list of variables
$allowed_variables = array("test", "variable", "not_POST", "not_GET",);
preg_match("#(\{([A-Z]+?)\}#", $text, $matches);
// not sure the result is in [1], do a var_dump
while($matches[1] as $variable) {
$variable = strtolower($variable);
// only allow white listed variables
if(!in_array($variable, $allowed_variables)) continue;
$text = str_replace("{".$match."}", $$match, $text);
}
答案 2 :(得分:4)
基于其他一些答案(特别是Bill Karwin& bouke)......
class CurlyVariables {
private static $_matchable = array();
private static $_caseInsensitive = true;
private static function var_match($matches)
{
$match = $matches[1];
if (self::$_caseInsensitive) {
$match = strtolower($match);
}
if (isset(self::$_matchable[$match]) && !is_array(self::$_matchable[$match])) {
return self::$_matchable[$match];
}
return '';
}
public static function Replace($needles, $haystack, $caseInsensitive = true) {
if (is_array($needles)) {
self::$_matchable = $needles;
}
if ($caseInsensitive) {
self::$_caseInsensitive = true;
self::$_matchable = array_change_key_case(self::$_matchable);
}
else {
self::$_caseInsensitive = false;
}
$out = preg_replace_callback("/{(\w+)}/", array(__CLASS__, 'var_match'), $haystack);
self::$_matchable = array();
return $out;
}
}
实施例:
echo CurlyVariables::Replace(array('this' => 'joe', 'that' => 'home'), '{This} goes {that}', true);
答案 3 :(得分:4)
使用$$vars
和$GLOBALS
都代表安全风险。用户应该能够明确定义可接受的标记列表。
以下是我可以设计的最简单的单功能通用解决方案。我选择使用双括号作为标记分隔符,但您可以轻松地修改它。
/**
* replace_tags replaces tags in the source string with data from the vars map.
* The tags are identified by being wrapped in '{{' and '}}' i.e. '{{tag}}'.
* If a tag value is not present in the tags map, it is replaced with an empty
* string
* @param string $string A string containing 1 or more tags wrapped in '{{}}'
* @param array $tags A map of key-value pairs used to replace tags
* @param force_lower if true, converts matching tags in string via strtolower()
* before checking the tags map.
* @return string The resulting string with all tags replaced.
*/
function replace_tags($string, $tags, $force_lower = false)
{
return preg_replace_callback('/\\{\\{([^{}]+)\}\\}/',
function($matches) use ($force_lower, $tags)
{
$key = $force_lower ? strtolower($matches[1]) : $matches[1];
return array_key_exists($key, $tags)
? $tags[$key]
: '';
}
, $string);
}
[edit]添加了force_lower
param
[edit]将force_lower
var添加到use
列表 - 感谢任何人开始拒绝编辑。
答案 4 :(得分:2)
这将有效....
$FOO = 'Salt';
$BAR = 'Peppa';
$string = '{FOO} and {BAR}';
echo preg_replace( '/\{([A-Z]+)\}/e', "$$1", $string );
但这似乎是一个糟糕的主意。
答案 5 :(得分:1)
以下是另一种解决方案,但我同意其他人的疑问,这是否是明智的做法。
<?php
$string = "bla bla bla {VARIABLE} bla bla";
$VARIABLE = "foo";
function var_repl($matches)
{
return $GLOBALS[$matches[1]];
}
echo preg_replace_callback("/{(\w+)}/", "var_repl", $string);
答案 6 :(得分:1)
我很高兴我找到了Bill Criswell的解决方案,但是 是否也可以替换这些变量:
string tmp =“{myClass.myVar}”;
PHP代码的位置如下:
class myClass
{
public static $myVar = "some value";
}
答案 7 :(得分:1)
$data_bas = 'I am a {tag} {tag} {club} {anothertag} fan.'; // Tests
$vars = array(
'{club}' => 'Barcelona',
'{tag}' => 'sometext',
'{anothertag}' => 'someothertext'
);
echo strtr($data_bas, $vars);