带有关联数组的str_replace()

时间:2010-03-08 04:28:24

标签: php

您可以将数组与str_replace()一起使用:

$array_from = array ('from1', 'from2'); 
$array_to = array ('to1', 'to2');

$text = str_replace ($array_from, $array_to, $text);

但是如果你有关联数组呢?

$array_from_to = array (
 'from1' => 'to1';
 'from2' => 'to2';
);

如何在str_replace()中使用它?
速度很重要 - 阵列足够大。

5 个答案:

答案 0 :(得分:44)

$text = strtr($text, $array_from_to)

顺便说一句,那仍然是一维的“数组”。

答案 1 :(得分:27)

$array_from_to = array (
    'from1' => 'to1',
    'from2' => 'to2'
);

$text = str_replace(array_keys($array_from_to), $array_from_to, $text);

to字段将忽略数组中的键。这里的关键功能是array_keys

答案 2 :(得分:4)

$text='yadav+RAHUL(from2';

  $array_from_to = array('+' => 'Z1',
                         '-' => 'Z2',
                         '&' => 'Z3',
                         '&&' => 'Z4',
                         '||' => 'Z5',
                         '!' => 'Z6',
                         '(' => 'Z7',
                         ')' => 'Z8',
                         '[' => 'Z9',
                         ']' => 'Zx1',
                         '^' => 'Zx2',
                         '"' => 'Zx3',
                         '*' => 'Zx4',
                         '~' => 'Zx5',
                         '?' => 'Zx6',
                         ':' => 'Zx7',
                         "'" => 'Zx8');

  $text = strtr($text,$array_from_to);

   echo $text;

 //output is

yadavZ1RAHULZ7from2

答案 3 :(得分:2)

$keys = array_keys($array);
$values = array_values($array);
$text = str_replace($key, $values, $string);

答案 4 :(得分:2)

$search = array('{user}', '{site}');
$replace = array('Qiao', 'stackoverflow');
$subject = 'Hello {user}, welcome to {site}.';

echo str_replace ($search, $replace, $subject);

Hello Qiao, welcome to stackoverflow.中的结果。

$array_from_to = array (
    'from1' => 'to1';
    'from2' => 'to2';
);

这不是一个二维数组,它是一个关联数组。

扩展第一个示例,我们将$ search作为数组的键,$ replace作为值,代码看起来像这样。

$searchAndReplace = array(
    '{user}' => 'Qiao',
    '{site}' => 'stackoverflow'
);

$search = array_keys($searchAndReplace);
$replace = array_value($searchAndReplace);
# Our subject is the same as our first example.

echo str_replace ($search, $replace, $subject);

Hello Qiao, welcome to stackoverflow.中的结果。