Tagged: Replacing Patterns

Replacing Patterns in a String

Problem You want to replace all/some occurrences of a pattern or substring within a string with something else. Solution Use a regular expression in combination with PHP’s str_replace() function (for simple patters): <?php //...