标签: php regex
我想将',"等特殊字符替换为\',\",因为在使用这些值创建查询时会导致错误。
'
"
\'
\"
任何人都知道使用',"替换\',\"(单引号,双引号)的正则表达式?
答案 0 :(得分:0)
$ replacement = preg_replace(“/',\”/“,”\',\\“”,“',\”“);
http://php.net/manual/fr/function.preg-replace.php