I remember doing this before, but can't find the code. I use str_replace to replace one character like this: str_replace(':', ' ', $string); but I want to replace all the following characters \/:*?"<>|, without doing a str_replace for each.
| |||||||||
feedback
|
|
Alternatively you could use
| |||||
feedback
|
| |||
|
feedback
|
|
You could use preg_replace(). The following example can be run using command line php:
Output:
| ||||
|
feedback
|