PHP - заменить строку переменной, названной как строка - PullRequest
6 голосов
/ 21 сентября 2010

так что строка такая:

"bla bla bla {VARIABLE} bla bla"

когда я использую эту строку где-то в функции, я хочу заменить {VARIABLE} на $ variable (или любые другие строки в верхнем регистре с символом {}). переменная $ (и любые другие переменные) будет определена внутри этой функции

Могу ли я это сделать?

Ответы [ 8 ]

13 голосов
/ 21 сентября 2010

Используйте регулярное выражение, чтобы найти все подстановки, затем переберите результат и замените их. Обязательно разрешите только те переменные, которые вы хотели бы предоставить.

// 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);
}
13 голосов
/ 21 сентября 2010
$TEST = 'one';
$THING = 'two';
$str = "this is {TEST} a {THING} to test";

$result = preg_replace('/\{([A-Z]+)\}/e', "$$1", $str);
4 голосов
/ 26 ноября 2012

Использование $$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 голосов
/ 02 октября 2012

Опираясь на некоторые другие ответы (особенно Билла Карвина и Боука) ...

 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);
2 голосов
/ 21 сентября 2010

Это сработает ....

$FOO = 'Salt';
$BAR = 'Peppa';
$string = '{FOO} and {BAR}';
echo preg_replace( '/\{([A-Z]+)\}/e', "$$1", $string );

но это просто ужасная идея.

1 голос
/ 17 мая 2016
$data_bas = 'I am a {tag} {tag} {club} {anothertag} fan.'; // Tests

$vars = array(
  '{club}'       => 'Barcelona',
  '{tag}'        => 'sometext',
  '{anothertag}' => 'someothertext'
);

echo strtr($data_bas, $vars);
1 голос
/ 19 января 2012

Я рад, что нашел решение Билла Крисвелла, но можно ли заменить такие переменные:

string tmp = "{myClass.myVar}";

Где код PHPбудет что-то вроде:

class myClass
{
    public static $myVar = "some value";
}
1 голос
/ 21 сентября 2010

Ниже приведено еще одно решение, но я согласен с другими людьми, которые сомневаются в том, что это мудрый шаг для вас.

<?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);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...