Using PHP I am running str_replace many times in a row to switch one thing out with another like this:

$a = str_replace("cake", "c_", $a);
$a = str_replace("backup", "bk_", $a);
$a = str_replace("tax_documents", "tax_", $a);

And so on for thirty lines. What is the most efficient way of doing this?

link|improve this question

feedback

5 Answers

up vote 9 down vote accepted

You can write the replacement rules like so:

$replacements = array(
             'cake' => 'c_',
           'backup' => 'bk_',
    'tax_documents' => 'tax_'
);

Then use str_replace like this:

$toReplace = array_keys($replacements);
$replaceWith = array_values($replacements);
$a = str_replace($toReplace, $replaceWith, $a);
link|improve this answer
I prefer this to netcoder's solution because I find the associative array clearer. – notJim Nov 8 '10 at 20:03
Even better than mine! – Daniel Standage Nov 8 '10 at 20:04
feedback

The str_replace function will take arrays for the search and replace arguments. Try this.

$finds = array("cake", "backup", "tax_documents");
$reps  = array("c_", "bk_", "tax_");
$a = str_replace($finds, $reps, $a);
link|improve this answer
feedback

Use arrays!

$a = str_replace(array("cake", "backup", "tax_documents"), array("c_", "bk_", "tax_"), $a);
link|improve this answer
feedback

preg_replace().

link|improve this answer
feedback

Try:

$a = str_replace(array("tax_documents", "backup", "cake"), array("tax_", "bk_", "c_"), $a);

link|improve this answer
@netcoder beat me to it :P – Kyle Hudson Nov 8 '10 at 20:02
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.