In the documentation for preg_replace is says you can use indexed arrays to replace multiple strings. I would like to do this with associative arrays, but it seems to not work.
Does anyone know if this indeed does not work?
|
In the documentation for preg_replace is says you can use indexed arrays to replace multiple strings. I would like to do this with associative arrays, but it seems to not work. Does anyone know if this indeed does not work? |
|||
|
|
|
Do you want to do this on keys or the keys and values or just retain the keys and process the values? Whichever the case, On the keys:
On the keys and values:
On the values retaining keys:
All of these assume a function something like:
|
||||
|
|
|
If I understand this correctly, what you want is:
|
|||
|
|