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

String replace(single quotes) function in php

我不想使用 php

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

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

提前致谢....

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

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

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