我正在构建一个相当大的Lucene.NET搜索表达式。是否有最佳实践方法在PHP中进行字符串替换?它不一定是这种方式,但我希望有类似于C#String.Format方法的东西。
这是C#中逻辑的样子。
var filter = "content:{0} title:{0}^4.0 path.title:{0}^4.0 description:{0} ...";
filter = String.Format(filter, "Cheese");
是否有PHP5等价物?
答案 0 :(得分:69)
您可以使用sprintf
function:
$filter = "content:%1$s title:%1$s^4.0 path.title:%1$s^4.0 description:%1$s ...";
$filter = sprintf($filter, "Cheese");
或者你编写自己的函数来用相应的参数替换{
i
}
:
function format() {
$args = func_get_args();
if (count($args) == 0) {
return;
}
if (count($args) == 1) {
return $args[0];
}
$str = array_shift($args);
$str = preg_replace_callback('/\\{(0|[1-9]\\d*)\\}/', create_function('$match', '$args = '.var_export($args, true).'; return isset($args[$match[1]]) ? $args[$match[1]] : $match[0];'), $str);
return $str;
}
答案 1 :(得分:7)
尝试sprintf http://php.net/sprintf
答案 2 :(得分:0)
如果有错误或'create_function',请尝试此操作
public static function format()
{
$args = func_get_args();
$format = array_shift($args);
preg_match_all('/(?=\{)\{(\d+)\}(?!\})/', $format, $matches, PREG_OFFSET_CAPTURE);
$offset = 0;
foreach ($matches[1] as $data) {
$i = $data[0];
$format = substr_replace($format, @$args[$i], $offset + $data[1] - 1, 2 + strlen($i));
$offset += strlen(@$args[$i]) - 2 - strlen($i);
}
return $format;
}
我是从here找到的
答案 3 :(得分:0)
通过现代方法使用 preg_replace_callback
,我们甚至可以使用辅助类库来支持点符号 (adbario/php-dot-notation) 由内而外的格式以及数组键:
use \Adbar\Dot;
function format($text, ...$args)
{
$params = new Dot([]);
if (count($args) === 1 && is_array($args[0])) {
$params->setArray($args[0]);
} else {
$params->setArray($args);
}
return preg_replace_callback(
'/\{(.*?)\}/',
function ($matches) use ($params) {
return $params->get($matches[1], $matches[0]);
},
$text
);
}
我们可以这样使用它:
> format("content:{0} title:{0}^4.0 path.title:{0}^4.0 description:{0} ...", "Cheese");
"content:Cheese title:Cheese^4.0 path.title:Cheese^4.0 description:Cheese ..."
> format(
'My name is {name} and my age is {age} ({name}/{age})',
['name' => 'Christos', 'age' => 101]
);
"My name is Christos and my age is 101 (Christos/101)"
> format(
'My name is {name}, my age is {info.age} and my ID is {personal.data.id} ({name}/{info.age}/{personal.data.id})',
[
'name' => 'Chris',
'info' => [
'age' => 40
],
'personal' => [
'data' => [
'id' => '#id-1234'
]
]
]
);
"My name is Christos, my age is 101 and my ID is #id-1234 (Christos/101/#id-1234)"
当然,如果我们不希望使用点表示法支持多级数组,我们可以有一个没有任何额外库的简单版本:
function format($text, ...$args)
{
$params = [];
if (count($args) === 1 && is_array($args[0])) {
$params = $args[0];
} else {
$params = $args;
}
return preg_replace_callback(
'/\{(.*?)\}/',
function ($matches) use ($params) {
if (isset($params[$matches[1]])) {
return $params[$matches[1]];
}
return $matches[0];
},
$text
);
}