如何使用preg_replace用数组中的字符串替换子字符串? (PHP)

时间:2016-05-16 08:33:51

标签: php arrays string preg-replace

我有一个包含这些值的数据数组:

Array
(
    [id] => 1
    [myid] => 9
    [date] => 2014-01-30
    [user] => 17
    [reason] => some text here...
)

此字符串包含引用数据数组索引的数字:

$columns = '(0) as "id",(1) as "myid",(2) as "date",(3) as "user",(4) as "reason"';

是否可以将括号中的数字(包括括号)更改为数组中的适当值?

我知道如何使用(string) preg_replace( (array) $patterns, (array) $replacements, (string) $subject),但我不知道如何解决这个问题。

理想情况下,结果字符串可能如下所示:

'1' as "id",'9'  as "myid",'2014-01-30'  as "date",'17'  as "user",'some text here...'  as "reason"

5 个答案:

答案 0 :(得分:2)

您可以使用简单的foreach循环执行此操作:

$info = array(
    'id' => 1,
    'myid' => 9,
    'date' => '2014-01-30',
    'user' => 17,
    'reason' => 'some text here...'
);

$columns = '(0) as "id",(1) as "myid",(2) as "date",(3) as "user",(4) as "reason"';

foreach (array_values($info) as $key => $value) {
    $columns = str_replace(
        '(' . $key . ')',
        str_pad($value, strlen($value) + 2, "'", STR_PAD_BOTH),
        $columns
    );
}

echo $columns;

答案 1 :(得分:2)

使用preg_replace_callbackstr_replace函数的解决方案:

$columns = '(0) as "id",(1) as "myid",(2) as "date",(3) as "user",(4) as "reason"';

// $arr is your initial array
$result = preg_replace_callback(
                "/(\(\d\)) as \"(\w+?)\",?/i",
                function ($maches) use($arr){
                     return str_replace([$maches[1]], "'". $arr[$maches[2]]. "'", $maches[0]);
                },
                $columns);

print_r($result);

输出:

'1' as "id",'9' as "myid",'2014-01-30' as "date",'17' as "user",'some text here...' as "reason"

答案 2 :(得分:1)

你可以只使用一些PHP库函数来完成它。

$info = array(
    'id' => 1,
    'myid' => 9,
    'date' => '2014-01-30',
    'user' => 17,
    'reason' => 'some text here...'
);

$columns = '(0) as "id",(1) as "myid",(2) as "date",(3) as "user",(4) as "reason"';

$new_Arr = array();
$column_arr = explode(",", $columns);
foreach($column_arr as $values){
    $arr = explode(" as ", $values);
    $new_Arr[] = "'".$info[trim($arr[1], '"')]."' as ".$arr[1];
}

echo implode(",", $new_Arr) //'1' as "id",'9' as "myid",'2014-01-30' as "date",'17' as "user",'some text here...' as "reason"

答案 3 :(得分:0)

只需使用带有str_replace的循环。迭代数组,使用括号中的循环索引作为搜索字符串,并将其替换为corrsponding值。

答案 4 :(得分:0)

  

array_flip是你的救世主

直接来自文档

<?php
$input = array("oranges", "apples", "pears");
$flipped = array_flip($input);

print_r($flipped);
?>

以上示例将输出:

Array
(
    [oranges] => 0
    [apples] => 1
    [pears] => 2
)