php中的字符串替换(单引号)函数

时间:2017-04-05 13:19:01

标签: php str-replace single-quotes

我不想使用php

替换两种独特格式的引号
$f1= "Alva’s Institute of Engineering & Technology (AIET)";
$f1= "Alva's Institute Of Engineering & Technology";

我尝试了str_replace函数,但它不适用于两个引号:str_replace("’","'",$f1),如何替换两个引号???

提前致谢....

1 个答案:

答案 0 :(得分:2)

可以使用str_replace查找多个字符串,如:

print str_replace(array("’","'"),"'",$f1);

http://php.net/manual/en/function.str-replace.php