从php中的特定字符串中删除单引号

时间:2015-07-30 13:10:32

标签: php string replace

我有xml String,在两个地方包含以下字符串,我需要通过删除单引号来修改,而不会影响其他具有单引号的部分

Contact submitted the Form 'Register here-SOD75' . See details under WWW

我希望删除单引号,使其成为:

Contact submitted the Form Register here-SOD75 . See details under WWW

引号内的值会有所不同。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

只需使用str_replace功能。

$str = "Contact submitted the Form 'Register here-SOD75' . See details under WWW";    
$str = str_replace("'", "", $str);
echo $str; //Contact submitted the Form Register here-SOD75 . See details under WWW