正则表达式用' \'替换特殊字符符号

时间:2015-02-13 08:50:40

标签: php regex

我想将'"等特殊字符替换为\'\",因为在使用这些值创建查询时会导致错误。

任何人都知道使用'"替换\'\"(单引号,双引号)的正则表达式?

1 个答案:

答案 0 :(得分:0)

$ replacement = preg_replace(“/',\”/“,”\',\\“”,“',\”“);

http://php.net/manual/fr/function.preg-replace.php