str_replace使用单引号但不是双引号

时间:2015-04-16 18:07:08

标签: php str-replace

您有以下代码:

$ItemDescriptionNEW = str_replace('\"', '"',$ItemDescription);
$ItemDescriptionNEW = str_replace('\'', ''', $ItemDescriptionNEW);

当我执行它时,只会替换单引号。 我一直在寻找过去一小时的问题而无法弄清楚......

1 个答案:

答案 0 :(得分:4)

您必须使用双引号删除使用它的反斜杠。因为你不必逃避任何事情。所以只需使用它:

$ItemDescriptionNEW = str_replace('"', '"',$ItemDescription);