Is there a PHP function that can escape regex patterns before they are applied?
I am looking along the lines of the C# Regex.Escape function.
|
|
|
preg_quote() is what you are looking for:
|
||||
|
One additional remark to @TomHaigh answer, if you don't specify the second |
||||
|
|