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?